NET FTP Library
UploadDirectory(String,String,Boolean,Int32,Int32) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > UploadDirectory Method : UploadDirectory(String,String,Boolean,Int32,Int32) Method
The local path to upload
The FTP directory to upload to
Upload files in sub directories
The smallest size file to upload in bytes
The biggest size file to upload in bytes
Upload files that are in a certain size range
Syntax
'Declaration
 
Public Overloads Function UploadDirectory( _
   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 FTP
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.UploadDirectory(localDirectory, ftpDirectory, subDirectories, minSizeInBytes, maxSizeInBytes)
public System.Collections.Generic.List<TransferInfo> UploadDirectory( 
   System.string localDirectory,
   System.string ftpDirectory,
   System.bool subDirectories,
   System.int minSizeInBytes,
   System.int maxSizeInBytes
)
public function UploadDirectory( 
    localDirectory: System.String;
    ftpDirectory: System.String;
    subDirectories: System.Boolean;
    minSizeInBytes: System.Integer;
    maxSizeInBytes: System.Integer
): System.Collections.Generic.List; 
public function UploadDirectory( 
   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*>* UploadDirectory( 
   System.string* localDirectory,
   System.string* ftpDirectory,
   System.bool subDirectories,
   System.int minSizeInBytes,
   System.int maxSizeInBytes
) 
public:
System.Collections.Generic.List<TransferInfo^>^ UploadDirectory( 
   System.String^ localDirectory,
   System.String^ ftpDirectory,
   System.bool subDirectories,
   System.int minSizeInBytes,
   System.int maxSizeInBytes
) 

Parameters

localDirectory
The local path to upload
ftpDirectory
The FTP directory to upload to
subDirectories
Upload files in sub directories
minSizeInBytes
The smallest size file to upload in bytes
maxSizeInBytes
The biggest size file to upload in bytes
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
//Uploads all directories, subdirectories and files in the selected Directory asynchronously to the FTP server 
System.Console.WriteLine("We are uploading the Download folder to the TestDir folder .This is a non-blocking call");
 
// All these calls do the same thing
ftp.CreateDirectory("TestDir");
ftp.UploadDirectory("C:\\Download", "TestDir");
/* ftp.UploadDirectory( "C:\\Download", "TestDir" , true, "*.*");
 ftp.UploadDirectory( "C:\\Download", "TestDir" , true, new Regex(".+"));
 ftp.UploadDirectory( "C:\\Download", "TestDir" , true, DateTime.MinValue, DateTime.MaxValue);
 ftp.UploadDirectory( "C:\\Download", "TestDir" , true, 0, Int64.MaxValue);
*/
  
System.Console.WriteLine("TestDir has now {0} KB", ftp.GetDirectorySize("TestDir") / 1024);
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
'Uploads all directories, subdirectories and files in the selected Directory asynchronously to the FTP server 
System.Console.WriteLine("We are uploading the Download folder to the TestDir folder .This is a non-blocking call")
 
' All these calls do the same thing
ftp.CreateDirectory("TestDir")
ftp.UploadDirectory("C:\\Download", "TestDir")
' ftp.UploadDirectory( "C:\\Download", "TestDir" , true, "*.*");
 'ftp.UploadDirectory( "C:\\Download", "TestDir" , true, new Regex(".+"));
 'ftp.UploadDirectory( "C:\\Download", "TestDir" , true, DateTime.MinValue, DateTime.MaxValue);
 'ftp.UploadDirectory( "C:\\Download", "TestDir" , true, 0, Int64.MaxValue);
'
 
System.Console.WriteLine("TestDir has now {0} KB", ftp.GetDirectorySize("TestDir") / 1024)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FTP Class
FTP Members
Overload List