我想在c#中测试包含文件路径的字符串是否存在该文件(类似Perl中的-e测试或Python中的os.path.exists())。


Use:

File.Exists(path)

MSDN: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx

编辑:在系统中。IO


System.IO.File.Exists(路径)

msdn


System.IO.File:

using System.IO;

if (File.Exists(path)) 
{
    Console.WriteLine("file exists");
} 

给出完整路径作为输入。避免相对路径。

 return File.Exists(FinalPath);

我使用WinForms和我使用文件的方式。Exists(string path)是下一个:

public bool FileExists(string fileName)
{
    var workingDirectory = Environment.CurrentDirectory;
    var file = $"{workingDirectory}\{fileName}";
    return File.Exists(file);
}

文件名必须包含像myfile.txt这样的扩展名


File.Exists(Path.Combine(_workDir, _file));