摘要: /// /// 创建新文件 /// /// 文件路径 /// 文件名称 public void AddFile(string parentPath, string FileName) { parentPath = Server.MapPath(parentPath); bool flag = !Directory.Exists(parentPath + FileName); if (!flag) { ... 阅读全文
posted @ 2014-01-08 11:01 贝小贝 阅读(674) 评论(0) 推荐(0) 编辑