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