标签: asp.net
我有C:\application\photo\gallery\sketches的路径。
C:\application\photo\gallery\sketches
现在我需要在将文件插入此位置之前检查整个路径是否退出。
答案 0 :(得分:7)
Directory.Exists Method正是您所寻找的:
using System.IO; //... if(Directory.Exists(path)) { // your stuff here }
答案 1 :(得分:0)
看看Directory.Exists。