如果是目錄可用:
DirectoryInfo TheFolder = new DirectoryInfo(PathName);
if(TheFolder.Exists)
{
//。。。。。。。。。。。。。
}
如果是文件可用:
FileInfo TheFile = new FileInfo(PathName);
if (TheFile.Exists)
{
//。。。。。。。。。。。。
}
通用判斷方法:
using System.IO;
//...
if(File.Exists("c:abc.txt"))
{
//...
}
if(Directory.Exists("d:abc"))
{
//...
}