c#7za.exe进程状态

时间:2012-05-11 13:42:07

标签: c# process progress 7zip

我正在运行一个7za.exe进程来7zip这样的文件:

ProcessStartInfo proc = new ProcessStartInfo();
proc.FileName = zip_Path;
proc.Arguments = "a -t7z ziped.7z file.bak";
proc.RedirectStandardInput = true;
proc.RedirectStandardOutput = true;
proc.UseShellExecute = false;
proc.CreateNoWindow = true;
p = Process.Start(proc); 
while (!p.HasExited)
{   
    res = p.StandardOutput.ReadLine();
    texto += "\n" + res;
}
 MessageBox.Show(texto + "\n" + "ErrorCode:" + p.ExitCode);
 p.Close();

这很好用,但是当我手动在控制台上运行7za.exe时,我可以看到压缩进度。有没有办法在我的应用程序上实时输出它?

4 个答案:

答案 0 :(得分:1)

我知道这是一个老问题,但我在这里找到答案https://stackoverflow.com/a/4291965/4050735

答案的代码示例:

var proc = new Process {
StartInfo = new ProcessStartInfo {
    FileName = "program.exe",
    Arguments = "command line arguments to your executable",
    UseShellExecute = false,
    RedirectStandardOutput = true,
    CreateNoWindow = true
}

proc.Start();
while (!proc.StandardOutput.EndOfStream) {
    string line = proc.StandardOutput.ReadLine();
    // do something with line
}

我发现这会返回您通常在控制台中看到的每一行,例如每次压缩一个文件。

答案 1 :(得分:1)

Hej,我今天遇到了同样的问题。那么所有那些寻找答案并点击这个网站的人(我想你在2014年发布了这个问题,你将不再使用这些信息)以下是我如何解决这个问题:

这样做的核心是7-Zip使用不同的流来写入输出,而C#只获取其中一个。但您可以通过使用命令行参数

强制7-Zip仅使用一个流
-bsp1 -bse1 -bso1

除了你还需要什么。然后就像这样捕捉百分比部分:

private static void CreateZip(string path, string zipFilename, Action<int> onProgress) {
    Regex REX_SevenZipStatus = new Regex(@"(?<p>[0-9]+)%");

    Process p = new Process();
    p.StartInfo.FileName = "7za.exe";
    p.StartInfo.Arguments = string.Format("a -y -r -bsp1 -bse1 -bso1 {0} {1}", 
        zipFilename, path);
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.RedirectStandardOutput = true;

    p.OutputDataReceived += (sender, e) => {
        if (onProgress != null) {
            Match m = REX_SevenZipStatus.Match(e.Data ?? "");
            if (m != null && m.Success) {
                int procent = int.Parse(m.Groups["p"].Value);
                onProgress(procent);
            }
        }
    };

    p.Start();
    p.BeginOutputReadLine();
    p.WaitForExit();
}

此方法将文件夹压缩为7-Zip文件。您可以使用onProgress参数(在另一个线程中调用)来处理状态 - 它将包含状态的百分比。

答案 2 :(得分:0)

而不是:

proc.CreateNoWindow = true;

尝试:

proc.WindowStyle = ProcessWindowStyle.Hidden;

答案 3 :(得分:0)

取决于它与控制台ReadLine()的交互方式可能不够,因为它只会在输出新行字符时返回。

7za.exe可能正在操纵当前行以显示进度,在这种情况下您应该可以使用Read()

如果您希望更好地了解压缩的内容,可以使用LZMA C#SDK进行查看 - 请查看SevenZipSharp