指定したディレクトリが存在するか確認する

public static bool System.IO.Directory.Exists (string path);

引き数
    path string テストするパス
戻り値
    存在する場合は true
    ない場合や、エラーが発生した場合は false

リファレンス

サンプル

if( !System.IO.Directory.Exists( path))
{
    return false;
}
// 何かしらの処理
return true;

Add a Comment

メールアドレスが公開されることはありません。 が付いている欄は必須項目です