File.Exists:
用于检查给定文件路径是否存在。如果文件存在,则返回true
,否则返回false
。
cs
string path="D:\\test\\example.txt"
bool exists = File.Exists(path);
if (exists)
{
Console.WriteLine("File exists.");
}
else
{
Console.WriteLine("File does not exist.");
}
Directory.Exists:
用于检查给定目录路径是否存在。如果目录存在,则返回true
,否则返回false
。
cs
string path="D:\\test"
bool exists = Directory.Exists(path);
if (exists)
{
Console.WriteLine(path+"Directory exists.");
}
else
{
//创建
Directory.CreateDirectory(path);
}