获取文件夹及其子文件夹下的所有文件
摘要:
public class FileAccess { //储存所有文件夹名 private ArrayList dirs; public FileAccess() { dirs = new ArrayList(); } //获取所有文件名 private ArrayList GetFileName(string dirPath) { ArrayList list = new ArrayList(); if (Dir... 阅读全文
posted @ 2013-01-09 14:32 草率的龙果果 阅读(664) 评论(0) 推荐(0)