fixing unrar

This commit is contained in:
John Andrews
2022-08-09 15:34:34 +12:00
parent 915705fcd1
commit 3da9770a1e

View File

@@ -25,6 +25,7 @@ internal class UnrarCommandLine
var process = new Process();
process.StartInfo.FileName = "unrar";
process.StartInfo.ArgumentList.Add("x");
process.StartInfo.ArgumentList.Add("-o+");
process.StartInfo.ArgumentList.Add(workingFile);
process.StartInfo.ArgumentList.Add(destinationPath);
process.StartInfo.UseShellExecute = false;