c# 遍历获取所有文件的示例代码
在使用C#进行桌面应用开发中,经常会有对文件进行操作的情况,这时可能会需要对文件夹进行文件扫描,获取所有文件
做法如下
/// <summary> /// 遍历获取所有文件 /// </summary> /// <param name="filePathByForeach"></param> /// <param name="result"></param> public static void ForeachFile(string filePathByForeach, ref string result) { try { DirectoryInfo theFolder = new DirectoryInfo(filePathByForeach); DirectoryInfo[] dirInfo = theFolder.GetDirectories();//获取所在目录的文件夹 FileInfo[] file = theFolder.GetFiles();//获取所在目录的文件 foreach (FileInfo fileItem in file) //遍历文件 { result += fileItem.DirectoryName + @"\" + fileItem.Name + "\n"; } //遍历文件夹 foreach (DirectoryInfo NextFolder in dirInfo) { ForeachFile(NextFolder.FullName, ref result); } } 【文章出处:cc防御 转载请说明出处】 catch (Exception) { throw; } }
以上就是c# 遍历获取所有文件的示例代码的详细内容,更多关于c# 遍历所有文件的资料请关注海外IDC网其它相关文章!
【文章出处:http://www.yidunidc.com/usa.html 提供,感谢支持】