C# 检查用户输入的特定文件名并打开文件
Posted
技术标签:
【中文标题】C# 检查用户输入的特定文件名并打开文件【英文标题】:C# check user input for specific file name and open file 【发布时间】:2019-02-06 01:07:39 【问题描述】:我有一个项目,我要求用户验证他们的机器上是否存在文件。他们输入路径,然后代码检查文件是否存在。
我想查看用户是否输入了特定的 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.");
【问题讨论】:
你有什么问题? 【参考方案1】:只需一行代码即可,无需自己重写。
string[] filePathList = new DirectoryInfo("FILE_PATH").GetFiles("FILE_NAME", SearchOption.AllDirectories);
更多信息请访问Microsoft Page。
【讨论】:
以上是关于C# 检查用户输入的特定文件名并打开文件的主要内容,如果未能解决你的问题,请参考以下文章