C#判断文件夹是否存在并创建

2019-04-15 13:10发布

 if (Directory.Exists("c:\pic"))
 {
   //MessageBox.Show("Folder is exists!");
 } else {
     Directory.CreateDirectory("c:\pic");
 }