由于各种原因,我使用7z.exe而不是包装器,并且解压缩看起来像这样:
var args = new StringBuilder();
args.AppendFormat("x \"{0}\"", source);
args.AppendFormat(" -o\"{0}\"", destination);
args.Append(" -y");
args.AppendFormat(" -p{0}", PassEscape(password)); // the password may contain special characters, etc
var code = ProcessHelper.Run(
new ProcessStartInfo
{
FileName = _zipPath,
Arguments = args.ToString()
},
token,
DefaultTimeout);
error = code != 0 ? ExitCodeTable.GetOrDefault(code, "Unknown 7z error") : null;
return code == 0;
我省略了一些琐碎的代码部分,例如ProcessHelper,它只是启动过程并运行它来完成。我用于测试的样本包含测试密码!@#$%^&*()_+";
,并且使用上面的代码始终表示密码错误。
PassEscape函数对我来说是完全未知的,因为我找不到任何可以帮助我完全摆脱所有这些特殊字符(包括其他编码)的信息,但是目前它非常简单:
private static string PassEscape(string input)
{
if (string.IsNullOrEmpty(input))
return input;
var b = new StringBuilder();
b.Append('"');
b.Append(input);
b.Append('"');
return b.ToString();
}
有帮助吗?
这对我有用:
string source = @"C:\Temp\New folder.7z";
string destination = @"C:\Temp\destination";
string password = "!@#$%^&*()_+\";";
Process sevenzip = Process.Start(
new ProcessStartInfo
{
FileName = @"C:\Program Files\7-Zip\7z.exe",
Arguments = $"x \"{source}\" -o\"{destination}\" -y -sccutf-8",
RedirectStandardInput = true,
UseShellExecute = false
});
sevenzip.StandardInput.WriteLine(password);
sevenzip.WaitForExit();