FileSystem.DirectoryExists(String) メソッド

定義

指定されたディレクトリが存在する場合、True を返します。

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

パラメーター

directory
String

ディレクトリのパス。

戻り値

ディレクトリが存在する場合は True。それ以外の場合は False。 パラメーターがディレクトリではなく名前とファイルのパスを表していた場合は、このメソッドも False を返します。

この例では、ディレクトリ C:\backup\logs が存在するかどうかを判断し、そのプロパティを確認します。

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

適用対象