edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
The working directory on the local file-system into which files are downloaded.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public string LocalDirectory { get; set; }
Visual Basic
Public Property LocalDirectory As String
	Get
	Set
Visual C++
public:
property String^ LocalDirectory {
	String^ get ();
	void set (String^ value);
}

Remarks

LocalDirectory must be an absolute path, e.g. C:\work\ftp

LocalDirectory is specific to this component, i.e. changing it does not change the working directory of the application using this assembly. Files are downloaded into this directory if it is set and a relative path or no path is supplied as the destination filename.

LocalDirectory is null by default meaning that the application's normal working directory is used when downloading files.

See Also