NET FTP Library
UploadDirectory(String,String) Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class > UploadDirectory Method : UploadDirectory(String,String) Method
The local path to upload
The FTP directory to upload to
Upload an entire directory, subdirectories, and files synchronously using FTP.
Syntax
'Declaration
 
Public Overloads Function UploadDirectory( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String _
) As System.Collections.Generic.List(Of TransferInfo)
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim value As System.Collections.Generic.List(Of TransferInfo)
 
value = instance.UploadDirectory(localDirectory, ftpDirectory)
public System.Collections.Generic.List<TransferInfo> UploadDirectory( 
   System.string localDirectory,
   System.string ftpDirectory
)
public function UploadDirectory( 
    localDirectory: System.String;
    ftpDirectory: System.String
): System.Collections.Generic.List; 
public function UploadDirectory( 
   localDirectory : System.String,
   ftpDirectory : System.String
) : System.Collections.Generic.List;
public: System.Collections.Generic.List<TransferInfo*>* UploadDirectory( 
   System.string* localDirectory,
   System.string* ftpDirectory
) 
public:
System.Collections.Generic.List<TransferInfo^>^ UploadDirectory( 
   System.String^ localDirectory,
   System.String^ ftpDirectory
) 

Parameters

localDirectory
The local path to upload
ftpDirectory
The FTP directory to upload to
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
 
//Upload an entire directory, subdirectories, and files synchronously 
System.Console.WriteLine("Transferring files from the Download folder to the TestDir FTP folder. This call is blocking");
ftp.UploadDirectory("C:\\Download", "TestDir");
 
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
 
'Upload an entire directory, subdirectories, and files synchronously 
System.Console.WriteLine("Transferring files from the Download folder to the TestDir FTP folder. This call is blocking")
ftp.UploadDirectory("C:\\Download", "TestDir")
 
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