使用 C# 从文件夹中获取所有文件名

编程入门 行业动态 更新时间:2024-10-20 03:16:00
本文介绍了使用 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# 从文件夹中获取所有文件名

本文发布于:2023-11-28 16:47:15,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1643184.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:文件名   文件   夹中

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!