'Declaration Public Overloads Function DownloadDirectory( _ ByVal localDirectory As System.String, _ ByVal ftpDirectory As System.String, _ ByVal subDirectories As System.Boolean, _ ByVal minSizeInBytes As System.Integer, _ ByVal maxSizeInBytes As System.Integer _ ) As System.Collections.Generic.List(Of TransferInfo)
'Usage Dim instance As SFTP Dim localDirectory As System.String Dim ftpDirectory As System.String Dim subDirectories As System.Boolean Dim minSizeInBytes As System.Integer Dim maxSizeInBytes As System.Integer Dim value As System.Collections.Generic.List(Of TransferInfo) value = instance.DownloadDirectory(localDirectory, ftpDirectory, subDirectories, minSizeInBytes, maxSizeInBytes)
public System.Collections.Generic.List<TransferInfo> DownloadDirectory( System.string localDirectory, System.string ftpDirectory, System.bool subDirectories, System.int minSizeInBytes, System.int maxSizeInBytes )
public function DownloadDirectory( localDirectory: System.String; ftpDirectory: System.String; subDirectories: System.Boolean; minSizeInBytes: System.Integer; maxSizeInBytes: System.Integer ): System.Collections.Generic.List;
public function DownloadDirectory( localDirectory : System.String, ftpDirectory : System.String, subDirectories : System.boolean, minSizeInBytes : System.int, maxSizeInBytes : System.int ) : System.Collections.Generic.List;
public: System.Collections.Generic.List<TransferInfo*>* DownloadDirectory( System.string* localDirectory, System.string* ftpDirectory, System.bool subDirectories, System.int minSizeInBytes, System.int maxSizeInBytes )
public: System.Collections.Generic.List<TransferInfo^>^ DownloadDirectory( System.String^ localDirectory, System.String^ ftpDirectory, System.bool subDirectories, System.int minSizeInBytes, System.int maxSizeInBytes )
Parameters
- localDirectory
- The local path to put the directory
- ftpDirectory
- The FTP directory to download
- subDirectories
- Download files in sub directories
- minSizeInBytes
- The smallest size file to download in bytes
- maxSizeInBytes
- The biggest size file to download in bytes