次のコードを実行すると、行にエラーが表示されます
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:\Users\test\Documents\details\Local Code\project\projectwebsite\PublishedSources\' の一部が見つかりませんでした。