首页 > 代码库 > C#控制台基础 directory获取一个文件夹中所有文件及文件夹的绝对路径
C#控制台基础 directory获取一个文件夹中所有文件及文件夹的绝对路径
1 探测的文件夹
2 代码
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 directory创建一个文件夹 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 //使用这个更方便吧25 List<string> fileAndDirectoryPath= filePath.ToList();26 fileAndDirectoryPath.AddRange(directoryPath);27 28 29 foreach (var item in fileAndDirectoryPath)30 {31 Console.WriteLine(item);32 }33 34 Console.ReadKey();35 }36 }37 }
3 效果
C#控制台基础 directory获取一个文件夹中所有文件及文件夹的绝对路径
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。