概述
/// <summary>
/// 获取程序当前文件目录下的所有文件列表/// </summary>
/// <param name="path">文件搜索路径</param>
/// <returns>文件名列表</returns>
private List<string> GetAllFiles(string A_Path)
{
List<string> l_Files = new List<string>();
DirectoryInfo l_DirecInfo = new DirectoryInfo(A_Path);
foreach (FileInfo l_FileInfo in l_DirecInfo.GetFiles("*"))
{
l_Files.Add(l_FileInfo.FullName);
}
foreach (DirectoryInfo l_DirecInfoChild in l_DirecInfo.GetDirectories("*"))
{
GetAllFiles(l_DirecInfoChild.FullName);
}
if (l_Files.Count > 0)
{
return l_Files;
}
else
return null;
}
最后
以上就是如意银耳汤为你收集整理的C#学习之获取某个文件下的目录列表及子目录列表的全部内容,希望文章能够帮你解决C#学习之获取某个文件下的目录列表及子目录列表所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复