- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
基本代码:
string startPath = @"C:\intel\logs";
string zipPath = @"C:\intel\logs-" + DateTime.Now.ToString("yyyy_dd_M-HH_mm_ss") + ".zip";
ZipFile.CreateFromDirectory(startPath, zipPath);
Error: the process cannot access the file "path_to_the_zip_file_created.zip" because it is being used by another process.
上述设置在我安装了 Visual Studio 的 Windows 7 上运行良好,但在 Windows Server 2008R2 上运行时出现上述错误消息。
我检查了防病毒日志,它没有阻止应用程序,也没有锁定创建的 zip 文件。
最佳答案
//WRONG
ZipFile.CreateFromDirectory("C:\somefolder", "C:\somefolder\somefile.zip");
//RIGHT
ZipFile.CreateFromDirectory("C:\somefolder", "C:\someotherfolder\somefile.zip");
我曾经犯过同样的错误:将文件压缩到我正在压缩的同一文件夹中。
这当然会导致错误。
关于c# ZipFile.CreateFromDirectory - 进程无法访问文件 "path_to_the_zip_file_created.zip",因为它正被另一个进程使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19395128/
我有以下代码 private static async Task CreateZipFile(string folderPath) { await Task.Run(() => {
我有一个基本的 Windows 10 UWP 应用程序,并使用以下代码从目录结构创建一个 .zip 文件: ZipFile.CreateFromDirectory("/inputpath", "/ou
ZipFile.CreateFromDirectory(source_dir, target_dir) 将在访问目录中的任何文件时抛出异常并停止压缩。我怎样才能让它对其余文件进行压缩?? 不允许终止进
我遇到了文件访问问题。 主要问题是我无法在 中写入 ZipFile文件夹选择器获取的文件夹。 虽然我一直在研究这个项目,但在遇到这个 ZipFile 问题之前,我做了很多与创建文件、删除文件以及在该文
我正在使用 RestSharp 发送 POST 请求,POST 请求包含一个 zip 文件以及以下 header : request.AddParameter("username",
基本代码: string startPath = @"C:\intel\logs"; string zipPath = @"C:\intel\logs-" + DateTime.Now.ToStrin
我是一名优秀的程序员,十分优秀!