Used for by multiple-file operations to determine whether or not a particular file
should be included in the operation.
Namespace:
EnterpriseDT.Net.Ftp
Assembly:
edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.3.0.0
Syntaxpublic delegate bool FileFilter(
FTPFile file
)
Public Delegate Function FileFilter (
file As FTPFile
) As Boolean
public delegate bool FileFilter(
FTPFile^ file
)
type FileFilter =
delegate of
file : FTPFile -> boolParameters
- file
- Type: EnterpriseDT.Net.FtpFTPFile
Return Value
Type:
Boolean
Remarks
The method that this delegate wraps should return
true if the file or directory
described by the given
FTPFile is to be included in the
operation being performed, and
false if the file or directory is to be
excluded.
See Also