我基本上直接从msdn复制了这个代码示例,并进行了一些微小的更改。 CopyTo
方法默默地失败了,我不明白为什么。什么会导致这种行为?它正在传递一个78 KB的压缩文件夹,里面有一个文本文件。返回的FileInfo
对象指向0 KB文件。没有例外被抛出。
public static FileInfo DecompressFile(FileInfo fi)
{
// Get the stream of the source file.
using (FileStream inFile = fi.OpenRead())
{
// Get original file extension,
// for example "doc" from report.doc.cmp.
string curFile = fi.FullName;
string origName = curFile.Remove(curFile.Length
- fi.Extension.Length);
//Create the decompressed file.
using (FileStream outFile = File.Create(origName))
{
// work around for incompatible compression formats found
// here http://george.chiramattel.com/blog/2007/09/deflatestream-block-length-does-not-match.html
inFile.ReadByte();
inFile.ReadByte();
using (DeflateStream Decompress = new DeflateStream(inFile,
CompressionMode.Decompress))
{
// Copy the decompression stream
// into the output file.
Decompress.CopyTo(outFile);
return new FileInfo(origName);
}
}
}
}
答案 0 :(得分:2)
在评论中,您说您正在尝试解压缩zip文件。在zip文件中不能像这样使用DeflateStream
类。您提到的MSDN example使用DeflateStream
创建单个压缩文件,然后解压缩它们。
尽管zip文件可能使用相同的算法(不确定),但它们不仅仅是单个文件的压缩版本。 zip文件是一个可以容纳许多文件和/或文件夹的容器。
如果您可以使用.NET Framework 4.5,我建议您使用新的ZipFile
或ZipArchive
类。如果您必须使用较早的框架版本,则可以使用免费库(例如DotNetZip或SharpZipLib)。