我有一个C#.NET(v4.6.2)WinForms应用程序,我正在访问一个文件,该文件可能是/可能不是使用“System.IO.Compression;”创建的.zip存档。我在项目中有“System.IO.Compression”和System.IO.Compress.FileSystem“引用,在顶部使用”System.IO.Compression;“,它是使用NuGet包安装程序安装的。
以下是尝试以.zip存档打开文件的代码:
try
{
string extractPath = Path.GetTempFileName();
string strGameVersion = "";
string strProjectType = "";
using (ZipArchive archive = ZipFile.OpenRead(OpenFilePath))
{
FileStream fs = new FileStream(extractPath, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
foreach (ZipArchiveEntry entry in archive.Entries)
{
if (entry.FullName.Contains("ProjectData.txt"))
{
entry.ExtractToFile(Path.Combine(extractPath, entry.FullName));
strGameVersion = sr.ReadLine();
strProjectType = sr.ReadLine();
}
File.Delete(extractPath);
}
sr.Close();
fs.Close();
archive.Dispose();
}
}
catch(System.IO.FileFormatException flex1)
{
MessageBox.Show(flex1.ToString(), "oops.", MessageBoxButtons.OK, MessageBox.Icon.Error);
}
错误消息是“System.MissingMethodException:找不到方法:'System.IO.Compression.ZipArchive System.IO.Compression.ZipFile.OpenRead(System.String)'。” 那么我做错了什么或者根本没做什么?
答案 0 :(得分:8)
由于某种原因,OpenRead
程序集中不存在net46
。
快速解决方法是使用
ZipArchive OpenRead(string filename)
{
return new ZipArchive(File.OpenRead(filename), ZipArchiveMode.Read);
}
回答
答案 1 :(得分:1)
我不得不切换到使用nuget.org的System.IO.Compression来实现这一点。另外,我必须进行上面Felix建议的更改。那就是取代:
ZipFile.OpenRead(file))
与
new ZipArchive(File.OpenRead(file), ZipArchiveMode.Read)
答案 2 :(得分:0)
根据您的输入,我假设尝试加载的依赖程序集可能是不正确的版本。为了告诉他们你将不得不检查融合绑定日志以查看发生了什么。下面的教程讲述了如何调试程序集绑定失败以检测其根本原因。