1

我正在尝试从 winform 应用程序中解压缩文件。我正在使用这段代码:

string dezarhiverPath = @AppDomain.CurrentDomain.BaseDirectory + "\\7z.exe";
ProcessStartInfo pro = new ProcessStartInfo();
pro.WindowStyle = ProcessWindowStyle.Hidden;
pro.FileName = dezarhiverPath;
pro.Arguments = @" e c:\TEST.ZIP";
Process x = Process.Start(pro);
x.WaitForExit();

该代码不返回错误,但没有任何内容。我也从 cmd 尝试了这个命令:

K:\>"C:\Test\7z.exe" e "c:\TEST.ZIP" 

但在 cmd 中,我收到此错误消息:

7-Zip cannot find the code that works with archives.

有人可以帮我从 c# 解压缩一些文件吗?

谢谢!

4

6 回答 6

6

您为什么要费心尝试在外部使用 7z.exe 应用程序?这是一种非常笨拙的做法。而是使用您可以使用的众多库之一。

如果这是一个新应用程序,并且您的目标是 .NET 4.5,则新System.IO.Compression命名空间有一个ZipFile类。

或者,SharpZipLib是 .NET 中用于文件压缩的​​ GPL 库。网上有样品。

DotNetZip也可用,它是 Ms-PL 许可的。

于 2013-05-15T06:46:52.040 回答
1

嘿,使用下面的代码,你的系统中必须有 7zip 应用程序。

  public void ExtractFile(string source, string destination)
    {
        string zPath = @"C:\Program Files\7-Zip\7zG.exe";// change the path and give yours 
        try
        {
            ProcessStartInfo pro = new ProcessStartInfo();
            pro.WindowStyle = ProcessWindowStyle.Hidden;
            pro.FileName = zPath;
            pro.Arguments = "x \"" + source + "\" -o" + destination;
            Process x = Process.Start(pro);
            x.WaitForExit();
        }
        catch (System.Exception Ex) {
          //DO logic here 
          }
    }

创造 :

public void CreateZip()
{
    string sourceName = @"d:\a\example.txt";
    string targetName = @"d:\a\123.zip";
    ProcessStartInfo p = new ProcessStartInfo();
    p.FileName = @"C:\Program Files\7-Zip\7zG.exe";
    p.Arguments = "a -tgzip \"" + targetName + "\" \"" + sourceName + "\" -mx=9";
    p.WindowStyle = ProcessWindowStyle.Hidden;
    Process x = Process.Start(p);
    x.WaitForExit();
}
于 2014-09-11T11:51:21.590 回答
0

参考以下代码:

using System.IO.Compression;

string startPath = @"c:\example\start";
string zipPath = @"c:\example\result.zip";
string extractPath = @"c:\example\extract";

ZipFile.CreateFromDirectory(startPath, zipPath);

ZipFile.ExtractToDirectory(zipPath, extractPath);

参考链接:

http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/849c4969-24b1-4650-88a5-5169727e527f/

于 2013-05-15T06:41:04.010 回答
0

您可以使用 SevenZipSharp 库

using (var input = File.OpenRead(lstFiles[0]))
{
    using (var ds = new SevenZipExtractor(input))
    {
        //ds.ExtractionFinished += DsOnExtractionFinished;

        var mem = new MemoryStream();
        ds.ExtractFile(0, mem);

        using (var sr = new StreamReader(mem))
        {
            var iCount = 0;
            String line;
            mem.Position = 0;
            while ((line = sr.ReadLine()) != null && iCount < 100)
            {
                iCount++;
                LstOutput.Items.Add(line);
            }

        }
    }
}
于 2013-10-03T20:27:20.110 回答
0

试试这个

    string fileZip = @"c:\example\result.zip";
    string fileZipPathExtactx= @"c:\example\";
    ProcessStartInfo p = new ProcessStartInfo();
    p.WindowStyle = ProcessWindowStyle.Hidden;
    p.FileName = dezarhiverPath ;
    p.Arguments = "x \"" + fileZip + "\" -o" + fileZipPathExtact;
    Process x = Process.Start(p);
    x.WaitForExit();
于 2014-07-16T07:37:32.817 回答
0

这也许可以帮助你。

        //You must create an empty folder to remove.
        string tempDirectoryPath = @"C:\Users\HOPE\Desktop\Test Folder\zipfolder";
        string zipFilePath = @"C:\Users\HOPE\Desktop\7za920.zip";
        Directory.CreateDirectory(tempDirectoryPath);
        ZipFile.ExtractToDirectory(zipFilePath, tempDirectoryPath);
于 2018-11-08T18:04:28.687 回答