NET SFTP Library
CurrentFileBeingTransferredDestination Property
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : CurrentFileBeingTransferredDestination Property
The currently transferring file destination. This property is filled during asynchronous uploads/downloads.
Syntax
'Declaration
 
Public ReadOnly Property CurrentFileBeingTransferredDestination As System.String
'Usage
 
Dim instance As SFTP
Dim value As System.String
 
value = instance.CurrentFileBeingTransferredDestination
public System.string CurrentFileBeingTransferredDestination {get;}
public read-only property CurrentFileBeingTransferredDestination: System.String; 
public function get CurrentFileBeingTransferredDestination : System.String
public: __property System.string* get_CurrentFileBeingTransferredDestination();
public:
property System.String^ CurrentFileBeingTransferredDestination {
   System.String^ get();
}
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
 
sftp.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}", sftp.CurrentFileBeingTransferredDestination);
 
while (sftp.IsBusy == true)
{
    System.Threading.Thread.Sleep(100);
}
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
 
sftp.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}", sftp.CurrentFileBeingTransferredDestination)
 
Do While sftp.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

SFTP Class
SFTP Members