edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Tests if the given directory exists.

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

Syntax

C#
public virtual bool DirectoryExists(
	string remoteDirectory
)
Visual Basic
Public Overridable Function DirectoryExists ( _
	remoteDirectory As String _
) As Boolean
Visual C++
public:
virtual bool DirectoryExists(
	String^ remoteDirectory
)

Parameters

remoteDirectory
Type: System..::..String

Return Value

true if directory exists and false otherwise

Remarks

The FTP protocol doesn't specify a standard way of testing for the existence of a directory, so this method tries to change into the directory and assumes that that the directory doesn't exist if an exception is thrown. The current working directory is restored before the method returns.

See Also