我正在尝试检查是否存在 xml 配置文件。
该文件的名称为 MyApp.exe.config
我在用
public static bool FileExistsCheck(string filename, string filepath = "")
{
if (filepath.Length == 0)
filepath = Directory.GetCurrentDirectory();
return File.Exists(filepath + "\\" + filename);
}
false
尽管文件存在,但仍会返回
谁能建议检查此文件是否存在的正确方法?