NET SFTP Library
CurrentDirectoryNumber Property
Example 






KellermanSoftware.NetSFtpLibrary Namespace > SFTP Class : CurrentDirectoryNumber Property
When uploading/downloading directories this is the number of the current directory or subdirectory being transferred.
Syntax
'Declaration
 
Public ReadOnly Property CurrentDirectoryNumber As System.Integer
'Usage
 
Dim instance As SFTP
Dim value As System.Integer
 
value = instance.CurrentDirectoryNumber
public System.int CurrentDirectoryNumber {get;}
public read-only property CurrentDirectoryNumber: System.Integer; 
public function get CurrentDirectoryNumber : System.int
public: __property System.int get_CurrentDirectoryNumber();
public:
property System.int CurrentDirectoryNumber {
   System.int 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);
 
//When uploading/downloading directories this is the number of the current 
//directory being transferred 
System.Console.WriteLine("Current directory number is {0}", sftp.CurrentDirectoryNumber);
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)
 
'When uploading/downloading directories this is the number of the current 
'directory being transferred 
System.Console.WriteLine("Current directory number is {0}", sftp.CurrentDirectoryNumber)
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