错误"无法找到路径的一部分

时间:2015-03-15 08:59:08

标签: c# iis compression zip icsharpcode

执行以下代码时,我在行

中发现错误
public static void WriteZipFile(List<string> filesToZip, string path, int compression)

代码:

using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using ICSharpCode.SharpZipLib.Checksums;
using ICSharpCode.SharpZipLib.Zip;

/* some code */

public static void WriteZipFile(List<string> filesToZip, string path, int compression)

/* some code */
Crc32 crc32 = new Crc32();
ZipOutputStream stream = new  ZipOutputStream(File.Create(path));
stream.SetLevel(compression);

其他信息:路径= C:\\Users\\test\\Documents\\details\Local Code\\project\\projectwebsite\\PublishedSources\\

错误:

  

无法找到路径的一部分   “C:\用户\测试\文档\细节\本地   代码\项目\ projectwebsite \ PublishedSources \”。

0 个答案:

没有答案