Download an entire directory, subdirectories, and files asynchronously using
FTP.
Syntax
public void DownloadDirectoryAsync(
System.string ,
System.string ,
System.object
)
public procedure DownloadDirectoryAsync(
: System.String;
: System.String;
: System.TObject
);
public function DownloadDirectoryAsync(
: System.String,
: System.String,
: System.Object
);
public: void DownloadDirectoryAsync(
System.string* ,
System.string* ,
System.Object*
)
public:
void DownloadDirectoryAsync(
System.String^ ,
System.String^ ,
System.Object^
)
'Declaration
Public Overloads Sub DownloadDirectoryAsync( _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.Object _
)
'Usage
Dim instance As FTP
Dim localDirectory As System.String
Dim ftpDirectory As System.String
Dim customObject As System.Object
instance.DownloadDirectoryAsync(localDirectory, ftpDirectory, customObject)
Parameters
- localDirectory
- The local path to put the directory
- ftpDirectory
- The FTP directory to download
- customObject
- Your custom object to be returned with Started, Progress, and Completed Events
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
//Download an entire directory, subdirectories,
// and files asynchronously using FTP
ftp.DownloadDirectory("C:\\Download", "TestDir");
while (ftp.IsBusy == true)
{
System.Threading.Thread.Sleep(100);
}
System.Console.WriteLine("TestDir has been downloaded");
System.Console.WriteLine("{0} files have been Transferred", ftp.FileCount);
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
'Download an entire directory, subdirectories,
' and files asynchronously using FTP
ftp.DownloadDirectory("C:\\Download", "TestDir")
Do While ftp.IsBusy = True
System.Threading.Thread.Sleep(100)
Loop
System.Console.WriteLine("TestDir has been downloaded")
System.Console.WriteLine("{0} files have been Transferred", ftp.FileCount)
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