摘要: ///path 指定文件夹///fileName指定文件的完整路径public void saveFile(string path, string fileName) { FileInfo file = new FileInfo(fileName); string newName = file.Name; file.CopyTo(path + @"\" + newName, true); } 阅读全文
posted @ 2012-08-31 16:18 cotty 阅读(2256) 评论(0) 推荐(1) 编辑