InfoConnect VBA Guide
Attachmate.Reflection.Objects.Emulation.OpenSystems Library / FileTransfer Object / TransferAutoDetectScanExtensionList Property
In This Topic
    TransferAutoDetectScanExtensionList Property
    In This Topic
    Returns or specifies file extensions for InfoConnect to scan when trying to determine a suitable file type for file transfers using the Auto-Detect transfer feature.
    Syntax
    expression.TransferAutoDetectScanExtensionList As String
    where expression is a variable that represents a FileTransfer Object
    Remarks
    The following example tells InfoConnect to scan all files with .BAK file extensions and all files with no file extension.

    FileTransfer.TransferAutoDetectScanExtensionList = "bak,<>"

    If you want InfoConnect to scan all files whose extensions have not been linked to a particular transfer type, use TransferAutoDetectDefaultType.

    To link file extensions to other transfer types, use TransferAutoDetectASCIIExtensionList, TransferAutoDetectBinaryExtensionList, and TransferAutoDetectImageLabelsExtensionList.

    The default value is "". Use "<>" to specify files with no file extension. Use commas to separate file extensions included in the string. Do not include periods with the file extensions. The string can be up to 259 characters long.

    See Also