当前位置:  开发笔记 > 编程语言 > 正文

如何从7z commandLine进程获取扩展错误信息

如何解决《如何从7zcommandLine进程获取扩展错误信息》经验,为你挑选了1个好方法。

在我的C#app中,我运行一个7z进程将存档提取到它的目录中

例如,存档位于%TEMP%目录中的随机命名目录中

C:\ Documents and Settings\User\Local Settings\Temp\_ vtugoyrc.fd2

(fullPathFilename ="C:\ Documents and Settings\User\Local Settings\Temp\_ vtugoyrc.fd2\xxx.7z")

我的代码是:

sevenZipProcessInfo.FileName = SEVEN_ZIP_EXECUTABLE_PATH;
sevenZipProcessInfo.Arguments = "x " + fullPathFilename;
sevenZipProcessInfo.WindowStyle = ProcessWindowStyle.Hidden;
sevenZipProcessInfo.UseShellExecute = true;
sevenZipProcessInfo.WorkingDirectory = Path.GetDirectoryName(fullPathFilename);
Process sevenZipProcess = Process.Start(sevenZipProcessInfo);
if (sevenZipProcess != null)
{
    sevenZipProcess.WaitForExit();
    if (sevenZipProcess.ExitCode != 0)
         ...exit code is 2 (fatal error by the 7z help)

我在哪里可以找到更详细的文档?



1> Eoin Campbel..:

您在这里使用7 Zip作为外部进程.它相当于直接从命令行调用命令.

您是否考虑使用实际的库来压缩/解压缩文件.你可以在C#项目中引用的东西.

Sharp Zip Lib相当知名,但是它是一个特定的包装库,用于使用7zip存档

推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有