C# 获取指定文件夹中所有的文件(包括子文件夹的文件)
2021-03-14 09:32
标签:遍历文件 绝对路径 ogr direct 方法 lin data new info 有个需求中需要播放指定路径的声音,但你必须要有该路径的声音才可以播放,如果没有该文件则播放默认的声音,该方法用于初始化应用的时候获取指定目录的所有文件,便于后来播放声音的时判断路径是否存在。 C# 获取指定文件夹中所有的文件(包括子文件夹的文件) 标签:遍历文件 绝对路径 ogr direct 方法 lin data new info 原文地址:https://www.cnblogs.com/luomingui/p/12493302.htmlusing 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();
}
///
上一篇:C#各版本新功能 C#7.1
下一篇:Java数组
文章标题:C# 获取指定文件夹中所有的文件(包括子文件夹的文件)
文章链接:http://soscw.com/index.php/essay/64524.html