FileSystemProxy.DirectoryExists(String) Method

Definition

Returns True if the specified directory exists.

public:
 bool DirectoryExists(System::String ^ directory);
public bool DirectoryExists (string directory);
member this.DirectoryExists : string -> bool
Public Function DirectoryExists (directory As String) As Boolean

Parameters

directory
String

Path of the directory.

Returns

True if the directory exists; otherwise False.

Examples

This example determines whether the directory C:\backup\logs exists and checks its properties.

If My.Computer.FileSystem.DirectoryExists("C:\backup\logs") Then
    Dim logInfo = My.Computer.FileSystem.GetDirectoryInfo(
        "C:\backup\logs")
End If

Applies to

See also