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

C# 获取指定文件夹中所有的文件(包括子文件夹的文件)

时间:2020-03-14 18:21:41      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:遍历文件   绝对路径   ogr   direct   方法   lin   data   new   info   

有个需求中需要播放指定路径的声音,但你必须要有该路径的声音才可以播放,如果没有该文件则播放默认的声音,该方法用于初始化应用的时候获取指定目录的所有文件,便于后来播放声音的时判断路径是否存在。

using System;
using TopDAL;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Data;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            string res = "";                
ForeachFile(@"C:\Users\aaa\Desktop\MvcApplication1\ConsoleApplication\sound",ref res); Console.Write(res); Console.ReadKey(); }      /// <summary> /// 遍历指定文件夹中的文件包括子文件夹的文件 /// </summary> /// <param name="filePathByForeach">等待遍历的目录(绝对路径)</param> /// <param name="result">遍历之后的结果</param> /// <returns></returns>      public static void ForeachFile(string filePathByForeach,ref string result) { DirectoryInfo theFolder = new DirectoryInfo(filePathByForeach); DirectoryInfo[] dirInfo = theFolder.GetDirectories();//获取所在目录的文件夹 FileInfo[] file= theFolder.GetFiles();//获取所在目录的文件 foreach (FileInfo fileItem in file) //遍历文件 { result+="dirName:"+fileItem.DirectoryName+" fileName:"+fileItem.Name + "\n"; } //遍历文件夹 foreach (DirectoryInfo NextFolder in dirInfo) { ForeachFile(NextFolder.FullName, ref result ); } } } }

 

C# 获取指定文件夹中所有的文件(包括子文件夹的文件)

标签:遍历文件   绝对路径   ogr   direct   方法   lin   data   new   info   

原文地址:https://www.cnblogs.com/luomingui/p/12493302.html

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