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

2021-03-14 09:32

阅读:552

标签:遍历文件   绝对路径   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(); }      /// /// 遍历指定文件夹中的文件包括子文件夹的文件 /// /// 等待遍历的目录(绝对路径) /// 遍历之后的结果 ///      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

上一篇:C#各版本新功能 C#7.1

下一篇:Java数组


评论


亲,登录后才可以留言!