NET FTP Library
UploadDirectoryInParallelAsync Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : UploadDirectoryInParallelAsync Method
The local path to put the directory
The FTP directory to download
Download a directory and all sub directories in parallel using two threads and two FTP connections
Syntax
'Declaration
 
<System.Runtime.CompilerServices.AsyncStateMachineAttribute(KellermanSoftware.NetFtpLibrary.FTP/d__248)>
<System.Diagnostics.DebuggerStepThroughAttribute()>
Public Function UploadDirectoryInParallelAsync( _
   ByVal localDirectory As System.String, _
   ByVal ftpDirectory As System.String _
) As System.Threading.Tasks.Task(Of List(Of TransferInfo))
'Usage
 
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim value As System.Threading.Tasks.Task(Of List(Of TransferInfo))
 
value = instance.UploadDirectoryInParallelAsync(localDirectory, ftpDirectory)
[System.Runtime.CompilerServices.AsyncStateMachine(KellermanSoftware.NetFtpLibrary.FTP/d__248)]
[System.Diagnostics.DebuggerStepThrough()]
public System.Threading.Tasks.Task<List<TransferInfo>> UploadDirectoryInParallelAsync( 
   System.string localDirectory,
   System.string ftpDirectory
)
public function UploadDirectoryInParallelAsync( 
    localDirectory: System.String;
    ftpDirectory: System.String
): System.Threading.Tasks.Task; 
System.Runtime.CompilerServices.AsyncStateMachineAttribute(KellermanSoftware.NetFtpLibrary.FTP/d__248)
System.Diagnostics.DebuggerStepThroughAttribute()
public function UploadDirectoryInParallelAsync( 
   localDirectory : System.String,
   ftpDirectory : System.String
) : System.Threading.Tasks.Task;
[System.Runtime.CompilerServices.AsyncStateMachine(KellermanSoftware.NetFtpLibrary.FTP/d__248)]
[System.Diagnostics.DebuggerStepThrough()]
public: System.Threading.Tasks.Task<List<TransferInfo*>*>* UploadDirectoryInParallelAsync( 
   System.string* localDirectory,
   System.string* ftpDirectory
) 
[System.Runtime.CompilerServices.AsyncStateMachine(KellermanSoftware.NetFtpLibrary.FTP/d__248)]
[System.Diagnostics.DebuggerStepThrough()]
public:
System.Threading.Tasks.Task<List<TransferInfo^>^>^ UploadDirectoryInParallelAsync( 
   System.String^ localDirectory,
   System.String^ ftpDirectory
) 

Parameters

localDirectory
The local path to put the directory
ftpDirectory
The FTP directory to download

Return Value

A list of files transferred
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 = "anonymus"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
ftp.EnableLogging();
ftp.Connect();
 
ftp.CurrentDirectory = "/";
 
await ftp.UploadDirectoryInParallelAsync("C:\\Download", "TestDir");
 
ftp.Disconnect();
Dim ftp As 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 = "anonymus" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
ftp.EnableLogging()
ftp.Connect()
 
ftp.CurrentDirectory = "/"
 
await ftp.UploadDirectoryInParallelAsync("C:\Download", "TestDir")
 
ftp.Disconnect()
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