摘要:
public static void DoRAR(string rarFile, string toRarDirecotry, string RARProgramFilePath) { string arguments = @"a -m0 -ep1 ""{0}"" ""{1}"""; arguments = string.Format( arguments, rarFile, toRarDirecotry ); var proc = Process.Start(new ProcessStartI 阅读全文