我想在C#中测试包含文件路径的字符串是否存在(类似于-e
Perl或os.path.exists()
Python中的测试)。
我想在C#中测试包含文件路径的字符串是否存在(类似于-e
Perl或os.path.exists()
Python中的测试)。
Answers:
用:
File.Exists(path)
MSDN:http : //msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
编辑:在System.IO
using System.IO;
if (File.Exists(path))
{
Console.WriteLine("file exists");
}