指定したディレクトリが存在するか確認する
2020年8月24日
public static bool System.IO.Directory.Exists (string path);
引き数
path string テストするパス
戻り値
存在する場合は true
ない場合や、エラーが発生した場合は false
サンプル
if( !System.IO.Directory.Exists( path))
{
return false;
}
// 何かしらの処理
return true;