Upload an entire directory, subdirectories, and files asynchronously using
sftp.
Syntax
public void UploadDirectoryAsync(
System.string ,
System.string ,
System.object
)
public procedure UploadDirectoryAsync(
: System.String;
: System.String;
: System.TObject
);
public function UploadDirectoryAsync(
: System.String,
: System.String,
: System.Object
);
public: void UploadDirectoryAsync(
System.string* ,
System.string* ,
System.Object*
)
public:
void UploadDirectoryAsync(
System.String^ ,
System.String^ ,
System.Object^
)
'Declaration
Public Overloads Sub UploadDirectoryAsync( _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.Object _
)
'Usage
Dim instance As SFTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim customObject As System.Object
instance.UploadDirectoryAsync(localDirectory, ftpDirectory, customObject)
Parameters
- localDirectory
- Local path to upload
- ftpDirectory
- FTP path to upload to.
- customObject
- Your custom object to be returned with Started, Progress, and Completed Events
Example
SFTP sftp = new SFTP(); //Trial Mode
//SFTP sftp = new SFTP("place user name here", "place license key here");
// set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com"; // replace with your SFTP server
sftp.UserName = "anonymous"; // replace with your user name
sftp.Password = "user@mail.com"; // replace with your password
//Upload an entire directory, subdirectories, and files asynchronously
System.Console.WriteLine("Transferring files from the Download folder to the TestDir FTP folder. This call is not blocking");
sftp.UploadDirectoryAsync("C:\\Download", "TestDir");
while (sftp.IsBusy == true)
{
System.Threading.Thread.Sleep(100);
}
System.Console.WriteLine("TestDir has now {0} KB", sftp.GetDirectorySize("TestDir") / 1024);
Dim sftp As SFTP = New SFTP() 'Trial Mode
'Dim sftp As SFTP = New SFTP("place user name here", "place license key here");
' set the name of the SSH server( its URL )
sftp.HostAddress = "some.sftp.server.com" ' replace with your SFTP server
sftp.UserName = "anonymous" ' replace with your user name
sftp.Password = "user@mail.com" ' replace with your password
'Upload an entire directory, subdirectories, and files asynchronously
System.Console.WriteLine("Transferring files from the Download folder to the TestDir FTP folder. This call is not blocking")
sftp.UploadDirectoryAsync("C:\\Download", "TestDir")
Do While sftp.IsBusy = True
System.Threading.Thread.Sleep(100)
Loop
System.Console.WriteLine("TestDir has now {0} KB", sftp.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