トップに戻る
tags
// ディレクトリない場合は作成 var tmpDir = "c:\test\"; if (! System.IO.Directory.Exists(tmpDir) ){ System.IO.Directory.CreateDirectory(tmpDir); }
edit