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

C#获取文件夹下的所有文件的文件名(转载)

时间:2018-01-29 22:38:51      阅读:434      评论:0      收藏:0      [点我收藏+]

标签:info   log   comment   keyword   plain   arch   name   key   tor   

String path = @"X:\xxx\xxx";
 
//第一种方法
var files = Directory.GetFiles(path, "*.txt");
             
foreach (var file in files)
    Console.WriteLine(file);
 
//第二种方法
DirectoryInfo folder = new DirectoryInfo(path);
            
foreach (FileInfo file in folder.GetFiles("*.txt"))
{
    Console.WriteLine(file.FullName);
}
 
来源:http://www.cnblogs.com/technology/archive/2011/07/12/2104786.html

C#获取文件夹下的所有文件的文件名(转载)

标签:info   log   comment   keyword   plain   arch   name   key   tor   

原文地址:https://www.cnblogs.com/hao-1234-1234/p/8379627.html

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