Example #1
0
 /// <summary>
 ///     Extracts all the files in the specified archive to the specified directory
 ///     on the file system.
 /// </summary>
 /// <param name="srcFile">
 ///     The path of the archive to extract.
 /// </param>
 /// <param name="destDir">
 ///     The path to the directory to place the extracted files in.
 /// </param>
 /// <param name="windowStyle">
 ///     The window state to use when the process is started.
 /// </param>
 /// <param name="dispose">
 ///     <see langword="true"/> to release all resources used by the
 ///     <see cref="Process"/> component; otherwise, <see langword="false"/>.
 /// </param>
 public Process Extract(string srcFile, string destDir, ProcessWindowStyle windowStyle = ProcessWindowStyle.Minimized, bool dispose = false) =>
 !File.Exists(ExtractExePath) ? null : ProcessEx.Start(ExtractExePath, ExtractArgs.FormatCurrent(srcFile, destDir), false, windowStyle, dispose);