我试图解压缩文件...所以我使用了SharpZipLib ..
我使用这些库:
using System;
using Gtk;
using ICSharpCode.SharpZipLib.Core;
using ICSharpCode.SharpZipLib.Zip;
using System.IO;
对于减压:
using (FileStream streamWriter = File.Create(fullZipToPath)) {
StreamUtils.Copy(zipStream, streamWriter, buffer);
}
但是我收到了这个错误:
the name StreamUtils doesn't exist in the current context
我缺少哪个图书馆?
答案 0 :(得分:1)
我遇到了同样的问题..无法使用流媒体解决它但在检查现有方法时我发现了一个非常有趣的方法,即CreateZip方法,它允许您创建zip压缩文件。
您必须指定目标文件夹和源文件夹才能使用方法
答案 1 :(得分:-1)
您使用的是旧版ICSharpCodeLib