我有一个项目,要求用户验证计算机上是否存在文件。他们输入路径,代码检查文件是否存在。
我想查看用户是否输入了一个特定的txt文件,如果是,请打开该文件。
我要查找的文件名为“ SavingsAccount.txt”。 该文件可以在任何目录中。
Console.WriteLine("Please enter the file path location");
Console.WriteLine("e.g.C:\\Users\\acke9387\\Downloads\\file1.txt");
bool Exist = true;
while (Exist)
{
String file = Console.ReadLine();
bool DoesFileExist = System.IO.File.Exists(file);
if (DoesFileExist == true)
{
Console.WriteLine("File does exist");
if (file.Contains("SavingsAccount.txt"))
{
System.IO.File.ReadAllText(file);
}
}
if (DoesFileExist == false)
{
Console.WriteLine("File does not exist, Please enter a valid path.");
}
}
答案 0 :(得分:0)
您只需简单的一行代码即可完成操作,而无需自己重写。
string[] filePathList = new DirectoryInfo("FILE_PATH").GetFiles("FILE_NAME", SearchOption.AllDirectories);
更多信息,请访问Microsoft Page。