Creates a new FtpFile instance.

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

Syntax

C#
public FtpFile(
	string filename,
	long filesize,
	string owner,
	string group,
	string permission,
	string fileDate,
	string fileTime,
	bool directory,
	bool link,
	string linkTarget,
	DirectoryStyles style,
	string line
)
Visual Basic
Public Sub New ( _
	filename As String, _
	filesize As Long, _
	owner As String, _
	group As String, _
	permission As String, _
	fileDate As String, _
	fileTime As String, _
	directory As Boolean, _
	link As Boolean, _
	linkTarget As String, _
	style As DirectoryStyles, _
	line As String _
)
Visual C++
public:
FtpFile(
	String^ filename, 
	long long filesize, 
	String^ owner, 
	String^ group, 
	String^ permission, 
	String^ fileDate, 
	String^ fileTime, 
	bool directory, 
	bool link, 
	String^ linkTarget, 
	DirectoryStyles style, 
	String^ line
)

Parameters

filename
Type: System..::..String
The name of the file.
filesize
Type: System..::..Int64
The size of the file.
owner
Type: System..::..String
The owner or owner id of the file.
group
Type: System..::..String
The group or group id of the file.
permission
Type: System..::..String
The permissions for the file.
fileDate
Type: System..::..String
The last modified date of the file.
fileTime
Type: System..::..String
The last modified time of the file.
directory
Type: System..::..Boolean
true if this is a directory.
link
Type: System..::..Boolean
true if this is a symbolic link.
linkTarget
Type: System..::..String
The target if a symbolic link.
style
Type: Jscape.Ftp..::..DirectoryStyles
The directory listing style used.
line
Type: System..::..String
The original line used to generate this entry.

See Also