gpt4 book ai didi

C# 检查用户输入的特定文件名并打开文件

转载 作者:太空宇宙 更新时间:2023-11-03 14:50:08 24 4
gpt4 key购买 nike

我有一个项目,我要求用户验证他们的机器上是否存在文件。他们输入路径,代码检查文件是否存在。

我想查看用户是否输入了特定的 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.");
}
}

最佳答案

一行代码即可,无需自己重写。

string[] filePathList = new DirectoryInfo("FILE_PATH").GetFiles("FILE_NAME", SearchOption.AllDirectories);

更多信息请访问 Microsoft Page .

关于C# 检查用户输入的特定文件名并打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52108010/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com