'Declaration Public Sub SendMultipleFiles( _ ByVal localFileMask As String, _ ByVal recursive As Boolean, _ ByVal recreateFolderStructure As Boolean _ )
'Usage Dim instance As FtpClient Dim localFileMask As String Dim recursive As Boolean Dim recreateFolderStructure As Boolean instance.SendMultipleFiles(localFileMask, recursive, recreateFolderStructure)
public void SendMultipleFiles( string localFileMask, bool recursive, bool recreateFolderStructure )
Parameters
- localFileMask
- The full path and file mask of the local files to send. This parameter can include a filtering mask to limit the files that are sent. For example, if "c:\temp\*" is specified, the entire contents of the "c:\temp" will be sent. If "c:\temp\*.txt" is used, all the files in the "c:\temp" folder that have the TXT extension will be sent. The "temp" folder will not be recreated on the FTP server.
- recursive
- true if the files in child folders should also be sent; false otherwise.
- recreateFolderStructure
- true if the local directory structure should be recreated on the FTP server; false otherwise.