首页 > 代码库 > C#控制台基础 directory获取一个文件夹下所有文件及文件夹的全名
C#控制台基础 directory获取一个文件夹下所有文件及文件夹的全名
0 探测的文件夹
1 代码
1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 8 namespace ConsoleApplication2 9 {10 class Program11 {12 static void Main(string[] args)13 {14 //在指定路径下15 string path = @"L:\";16 //文件夹的名字17 string aFileName = "用程序创建的文件夹";18 19 //文件的绝对路径20 string[] filePath = Directory.GetFiles(Path.Combine(path, aFileName));21 //文件夹的绝对路径22 string[] directoryPath = Directory.GetDirectories(Path.Combine(path, aFileName));23 24 //使用这个更方便吧,将文件与文件夹的绝对路径加入到一个list集合中25 List<string> fileAndDirectoryPath = filePath.ToList();26 fileAndDirectoryPath.AddRange(directoryPath);27 28 29 foreach (var item in fileAndDirectoryPath)30 {31 Console.WriteLine(Path.GetFileName(item));32 }33 34 35 Console.ReadKey();36 }37 }38 }
2 效果
C#控制台基础 directory获取一个文件夹下所有文件及文件夹的全名
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。