NET FTP Library
CurrentFileBeingTransferredDestination Property
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : CurrentFileBeingTransferredDestination Property
The currently transferring file destination. This property is filled during asynchronous uploads/downloads.
Syntax
'Declaration
 
Public Overridable ReadOnly Property CurrentFileBeingTransferredDestination As System.String
'Usage
 
Dim instance As FTP
Dim value As System.String
 
value = instance.CurrentFileBeingTransferredDestination
public virtual System.string CurrentFileBeingTransferredDestination {get;}
public read-only property CurrentFileBeingTransferredDestination: System.String; virtual; 
public function get CurrentFileBeingTransferredDestination : System.String
public: __property virtual System.string* get_CurrentFileBeingTransferredDestination();
public:
virtual property System.String^ CurrentFileBeingTransferredDestination {
   System.String^ get();
}
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
 
ftp.UploadDirectoryAsync("C:\\Download", "TestDir");
 
System.Threading.Thread.Sleep(300);
 
//The name of the current file being transferred (the destination file name) 
//This property is filled durring asynchronous uploads/downloads 
System.Console.WriteLine("Current asynchronously Transferred file is {0}", ftp.CurrentFileBeingTransferredDestination);
 
while (ftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
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
 
ftp.UploadDirectoryAsync("C:\\Download", "TestDir")
 
System.Threading.Thread.Sleep(300)
 
'The name of the current file being transferred (the destination file name) 
'This property is filled durring asynchronous uploads/downloads 
System.Console.WriteLine("Current asynchronously Transferred file is {0}", ftp.CurrentFileBeingTransferredDestination)
 
Do While ftp.IsBusy = True
    System.Threading.Thread.Sleep(100)
Loop
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