摘要: using System;using System.IO;namespace Utils{ public class IOHelper { public IOHelper(); public static bool CopyDir(DirectoryInfo fromDir, string toDir); //复制目录 public static bool CopyDir(string fromDir, string toDir); //复制目录 public static bool CreateDir(string dirName); //创建目录 public static bool Cr 阅读全文
posted @ 2011-05-18 11:29 啊汉 阅读(12377) 评论(0) 推荐(1) 编辑