C# 循环获取目录
摘要:
#region 获取目录 /// /// 获取指定文件夹下所有子目录及文件 /// /// 详细路径 public static string GetFoldAll(string Path) { string str = ""; DirectoryInfo thisOne = new DirectoryInfo(Path); str = ListTreeShow(thisOne, 0, str); ... 阅读全文
posted @ 2013-09-15 00:42 HOT SUMMER 阅读(1104) 评论(0) 推荐(0) 编辑