The name of the current directory being transferred (the source directory name).
This property is filled durring asynchronous uploads/downloads for directories. For
single file operations, this property is string.empty.
Syntax
public virtual System.string CurrentDirectoryBeingTransferred {get;}
public read-only property CurrentDirectoryBeingTransferred: System.String; virtual;
public function get CurrentDirectoryBeingTransferred : System.String
public: __property virtual System.string* get_CurrentDirectoryBeingTransferred();
public:
virtual property System.String^ CurrentDirectoryBeingTransferred {
System.String^ get();
}
'Declaration
Public Overridable ReadOnly Property CurrentDirectoryBeingTransferred As System.String
'Usage
Dim instance As FTP
Dim value As System.String
value = instance.CurrentDirectoryBeingTransferred
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);
//Gets The name of the current directory being transferred (the source directory name) This property is filled durring asynchronous uploads/downloads for directories Do NOT show the host name in this property as part of the path For single file operations, this property is string.empty
//This property is filled durring asynchronous uploads/downloads for directories
//Does NOT show the host name in this property as part of the path
//For single file operations, this property is string.empty
System.Console.WriteLine("Current asynchronously Transferred directory is {0}", ftp.CurrentDirectoryBeingTransferred);
// we wait while this operation takes place
while (ftp.IsBusy == true)
{
System.Threading.Thread.Sleep(100);
}
System.Console.WriteLine("TestDir has now {0} KB", ftp.GetDirectorySize("TestDir") / 1024);
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)
'Gets The name of the current directory being transferred (the source directory name) This property is filled durring asynchronous uploads/downloads for directories Do NOT show the host name in this property as part of the path For single file operations, this property is string.empty
'This property is filled durring asynchronous uploads/downloads for directories
'Does NOT show the host name in this property as part of the path
'For single file operations, this property is string.empty
System.Console.WriteLine("Current asynchronously Transferred directory is {0}", ftp.CurrentDirectoryBeingTransferred)
' we wait while this operation takes place
Do While ftp.IsBusy = True
System.Threading.Thread.Sleep(100)
Loop
System.Console.WriteLine("TestDir has now {0} KB", ftp.GetDirectorySize("TestDir") / 1024)
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