判斷C:\Test 是否存在

若不存在則透過 System.IO.Directory.CreateDirectory(dirPath); 來建立資料夾

 

string dirPath = @"C:\Test";

if (Directory.Exists(dirPath))
{
    Console.WriteLine("此資料夾 {0} 已存在。", dirPath);
}
else
{
    System.IO.Directory.CreateDirectory(dirPath);
    Console.WriteLine("此資料夾 {0} 已建立。", dirPath);
}


arrow
arrow
    創作者介紹
    創作者 Roger 的頭像
    Roger

    歡迎~ 程式設計 學生 作業 專題製作 程式外包 家教...

    Roger 發表在 痞客邦 留言(0) 人氣()