2018年8月3日
摘要: C#读取指定文件夹中的所有文件 C#遍历指定文件夹中的所有文件 DirectoryInfo TheFolder=new DirectoryInfo(folderFullName); //遍历文件夹 foreach(DirectoryInfo NextFolder in TheFolder.GetDirectories()) this.listBox1.Items.Add(NextFold... 阅读全文
posted @ 2018-08-03 14:31 可乐冒泡泡丶 阅读(145) 评论(0) 推荐(0)