edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
List this files in remote directory that match the given wildcard, including children.

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

Syntax

C#
public FTPFile[] DirDetails(
	string remoteDir,
	string wildcard
)
Visual Basic
Public Function DirDetails ( _
	remoteDir As String, _
	wildcard As String _
) As FTPFile()
Visual C++
public:
array<FTPFile^>^ DirDetails(
	String^ remoteDir, 
	String^ wildcard
)

Parameters

remoteDir
Type: System..::..String
name of remote directory
wildcard
Type: System..::..String
wildcard to use for filtering directory listings

Return Value

list of FTPFile objects that contain their children or null if the remote directory doesn't exist

Remarks

Each FTPFile object has an array of FTPFile objects called Children.

See Also