FTP Enumerate

Enumerates all files matching the specified criteria in the specified location on an FTP server. Supports FTP and FTPS.

This Node is only available in the 2023 Refresh.

Revision History

2.0.0.0 - Initial Release
2.0.0.1 - Fixed exception: Poll interval too long

Properties

Connection

Type: Connection Input
Provides a Connection and optionally a DropPoint to service the request.

Host
Type: String
Identifies the network location or address where the server is located.

Port
Type: Int32
Defines the specific communication channel through which data is transmitted.
Typically set to port 21 for standard FTP connections.
Typically set to port 990 for standard FTPS connections.

Username
Type: String
The username used to authenticate access to the FTP server.

Password
Type: String
The password used to authenticate access to FTP server.

TrustedServerCertificateThumbprint
Type: String
The SHA-1 Fingerprint of the certificate of the FTPS server to connect to. Submitted as numbers and all uppercase letters, no colons. Note that leaving this field empty will trust any certificate presented by the server.

UsePassiveFTP
Type: Boolean
Some servers are configured to expect the PASV command when a connection is initialized. The Node then sends the PASV command instead of the PORT command when initiating a connection to the Server.

FtpType
Type: List Input
Indicates the FTP type to be used.

FTP
FTPS

FtpEncryptionMode
Type: List Input
Indicates the way in which data is secured during transmission over FTP connections.

Automatic
Explicit
Implicit
None

DirectoryPath

Type: String Input
The path to the directory from which files should be listed.

Filter

Type: String Input
The search string to match against the names of files in the path.
Filter can be a combination of literal and wildcard characters, but doesn't support regular expressions.
The following wildcard specifiers are permitted in Filter.
\* (asterisk) Zero or more characters in that position.
? (question mark) Zero or one character in that position.
Characters other than the wildcard are literal characters.
Filter cannot end in two periods .. or contain two periods .. followed by Directory Separator Character, nor can it contain any invalid characters.

FolderDepthLimit

Type: Int32 Input
Specifies to what extent sub-directories should be evaluated. If no input is supplied, defaults to 0, meaning that sub-directory contents is not evaluated. The directory path supplied to the node acts as level 0, and a sub-directory inside the supplied path would be considered level 1.

ReturnFullPath

Type: Boolean Input
When true, the full path to the file will be provided on the FileName output. When false, only the file name will be provided.

FilePath

Type: String Output
Returns the name of each file found in turn.

CurrentRow

Type: Int32 Output
An incrementing counter, returning the index of the current file in the returned list.

TotalRows

Type: Int32 Output
Returns the total number of files which match the supplied criteria.

See Also

File Compressor
Flat File
File Read
FTP Write
FTP Delete
FTP Copy
FTP Info
FTP Move
FTP Watch