码迷,mamicode.com
首页 > Windows程序 > 详细

C#控制台基础 directory获取一个文件夹中所有文件及文件夹的绝对路径

时间:2016-10-15 14:00:41      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:

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 Program
11     {
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获取一个文件夹中所有文件及文件夹的绝对路径

标签:

原文地址:http://www.cnblogs.com/jinlingzi/p/5963118.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!