Gets/Sets the permission string of the FtpFile.

Namespace: Jscape.Ftp
Assembly: Jscape.Ftp (in Jscape.Ftp.dll) Version: 2.4.5.0

Syntax

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

Examples

The permissions string usually has the standard unix form.
CopyC#
drwxr-xr-x    directory
-rw-rw-r--    file
lrw-r--r--    link

See Also