摘要: /// summary /// 创建文件夹 /// /summary /// param name="Path"/param public static void FolderCreate(string Path) { // 判断目标目录是否存在如果不存在则新建之 if (!Directory.Exists(Path)) Directory.CreateDirectory(Path); } #endregion #region 创建目录 public static void FileCreate(string Path) { FileInfo CreateFile = new 阅读全文
posted @ 2010-12-16 14:29 枫- 阅读(157) 评论(0) 推荐(0) 编辑