NET FTP Library
CurrentDirectoryNumber Property
Example 






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

FTP Class
FTP Members