本文介绍了使用 C# 从文件夹中获取所有文件名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否可以获取某个文件夹中所有文本文件的名称.
I wanted to know if it is possible to get all the names of text files in a certain folder.
例如,我有一个名为 Maps 的文件夹,我想获取该文件夹中所有文本文件的名称并将其添加到字符串列表中.
For example, I have a folder with the name Maps, and I would like to get the names of all the text files in that folder and add it to a list of strings.
是否有可能,如果有,我该如何实现?
Is it possible, and if so, how I can achieve this?
推荐答案
using System.IO;
DirectoryInfo d = new DirectoryInfo(@"D:Test"); //Assuming Test is your Folder
FileInfo[] Files = d.GetFiles("*.txt"); //Getting Text files
string str = "";
foreach(FileInfo file in Files )
{
str = str + ", " + file.Name;
}
希望这会有所帮助...
Hope this will help...
这篇关于使用 C# 从文件夹中获取所有文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!