摘要:
private void deletefile(System.IO.DirectoryInfo path) { foreach(System.IO.DirectoryInfo d in path.GetDirectories()) { deletefile(d); } foreach(System.IO.FileInfo f in path.GetFiles()) { f.Delete(); } } 阅读全文
posted @ 2012-11-08 12:05
与时俱进
阅读(588)
评论(0)
推荐(0)