如何在插入文件之前检查目录是否存在

时间:2009-11-07 11:29:05

标签: asp.net

我有C:\application\photo\gallery\sketches的路径。

现在我需要在将文件插入此位置之前检查整个路径是否退出。

2 个答案:

答案 0 :(得分:7)

Directory.Exists Method正是您所寻找的:

using System.IO;

//...

if(Directory.Exists(path)) 
{
    // your stuff here
}

答案 1 :(得分:0)

看看Directory.Exists