如何在C#中提取rar文件?

时间:2010-07-13 14:28:06

标签: c# .net compression

我想使用cmd shell提取.rar文件,所以我写了这段代码:

string commandLine = @"c:\progra~1\winrar\winrar e  c:\download\TestedU.rar c:\download";
ProcessStartInfo PSI = new ProcessStartInfo("cmd.exe");
PSI.RedirectStandardInput = true;
PSI.RedirectStandardOutput = true;
PSI.RedirectStandardError = true;
PSI.UseShellExecute = false;
Process p = Process.Start(PSI);
StreamWriter SW = p.StandardInput;
StreamReader SR = p.StandardOutput;
SW.WriteLine(commandLine);
SW.Close(); 

它第一次正常工作,第二次没有显示任何内容。

9 个答案:

答案 0 :(得分:4)

使用SevenZipSharp,因为它可以更好地处理某些.exe文件。

private ReadOnlyCollection<string> ExtractArchive(string varPathToFile, string varDestinationDirectory) {
        ReadOnlyCollection<string> readOnlyArchiveFilenames;
        ReadOnlyCollection<string> readOnlyVolumeFilenames;
        varExtractionFinished = false;
        varExtractionFailed = false;
        SevenZipExtractor.SetLibraryPath(sevenZipDll);
        string fileName = "";
        string directory = "";
        Invoke(new SetNoArgsDelegate(() => {
                                         fileName = varPathToFile;
                                         directory = varDestinationDirectory;
                                     }));
        using (SevenZipExtractor extr = new SevenZipExtractor(fileName)) {
            //string[] test = extr.ArchiveFileNames.

            readOnlyArchiveFilenames = extr.ArchiveFileNames;
            readOnlyVolumeFilenames = extr.VolumeFileNames;
            //foreach (string dinosaur in readOnlyDinosaurs) {
            //MessageBox.Show(dinosaur);
            // }
            //foreach (string dinosaur in readOnlyDinosaurs1) {
            // // MessageBox.Show(dinosaur);
            // }
            try {
            extr.Extracting += extr_Extracting;
            extr.FileExtractionStarted += extr_FileExtractionStarted;
            extr.FileExists += extr_FileExists;
            extr.ExtractionFinished += extr_ExtractionFinished;

                extr.ExtractArchive(directory);
            } catch (FileNotFoundException error) {
                if (varExtractionCancel) {
                    LogBoxTextAdd("[EXTRACTION WAS CANCELED]");
                } else {
                    MessageBox.Show(error.ToString(), "Error with extraction");
                    varExtractionFailed = true;
                }
            }
        }
        varExtractionFinished = true;
        return readOnlyVolumeFilenames;
    }

  private void extr_FileExists(object sender, FileOverwriteEventArgs e) {
        listViewLogFile.Invoke(new SetOverwriteDelegate((args) => LogBoxTextAdd(String.Format("Warning: \"{0}\" already exists; overwritten\r\n", args.FileName))), e);
    }
    private void extr_FileExtractionStarted(object sender, FileInfoEventArgs e) {
        listViewLogFile.Invoke(new SetInfoDelegate((args) => LogBoxTextAdd(String.Format("Extracting \"{0}\"", args.FileInfo.FileName))), e);
    }
    private void extr_Extracting(object sender, ProgressEventArgs e) {
        progressBarCurrentExtract.Invoke(new SetProgressDelegate((args) => progressBarCurrentExtract.Increment(args.PercentDelta)), e);
    }
    private void extr_ExtractionFinished(object sender, EventArgs e) {
        Invoke(new SetNoArgsDelegate(() => {
                                         //pb_ExtractWork.Style = ProgressBarStyle.Blocks;
                                         progressBarCurrentExtract.Value = 0;
                                         varExtractionFinished = true;
                                         //l_ExtractProgress.Text = "Finished";
                                     }));
    }

当然你需要稍微调整一下,并使用你自己的东西。但为了举例,我添加了一些额外的方法。

答案 1 :(得分:3)

您可以跳过中间步骤并使用参数直接调用winrar.exe而不是首先实例化cmd.exe

您也可以查看7-zip SDK

答案 2 :(得分:2)

UnRar("C:\\Download\\sampleextractfolder\\", filepath2);

private static void UnRar(string WorkingDirectory, string filepath)
{

    // Microsoft.Win32 and System.Diagnostics namespaces are imported

    //Dim objRegKey As RegistryKey
    RegistryKey objRegKey;
    objRegKey = Registry.ClassesRoot.OpenSubKey("WinRAR\\Shell\\Open\\Command");
    // Windows 7 Registry entry for WinRAR Open Command

    // Dim obj As Object = objRegKey.GetValue("");
    Object obj = objRegKey.GetValue("");

    //Dim objRarPath As String = obj.ToString()
    string objRarPath = obj.ToString();
    objRarPath = objRarPath.Substring(1, objRarPath.Length - 7);

    objRegKey.Close();

    //Dim objArguments As String
    string objArguments;
    // in the following format
    // " X G:\Downloads\samplefile.rar G:\Downloads\sampleextractfolder\"
    objArguments = " X " + " " + filepath + " " + " " + WorkingDirectory;

    // Dim objStartInfo As New ProcessStartInfo()
    ProcessStartInfo objStartInfo = new ProcessStartInfo();

    // Set the UseShellExecute property of StartInfo object to FALSE
    //Otherwise the we can get the following error message
    //The Process object must have the UseShellExecute property set to false in order to use environment variables.
    objStartInfo.UseShellExecute = false;
    objStartInfo.FileName = objRarPath;
    objStartInfo.Arguments = objArguments;
    objStartInfo.WindowStyle = ProcessWindowStyle.Hidden;
    objStartInfo.WorkingDirectory = WorkingDirectory + "\\";

    //   Dim objProcess As New Process()
    Process objProcess = new Process();
    objProcess.StartInfo = objStartInfo;
    objProcess.Start();
    objProcess.WaitForExit();


    try
    {
        FileInfo file = new FileInfo(filepath);
        file.Delete();
    }
    catch (FileNotFoundException e)
    {
        throw e;
    }



}

答案 3 :(得分:1)

您忘记添加用于阅读错误的信息流。如果WINRAR运行正常,则在添加要读取的流时,您将找到错误输出。

答案 4 :(得分:1)

我得到了答案。 试试这个:

 System.Diagnostics.Process proc = new System.Diagnostics.Process();
 //Put the path of installed winrar.exe
 proc.StartInfo.FileName = @"C:\Program Files\WinRAR\unrar.exe";
 proc.StartInfo.CreateNoWindow = true;
 proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
 proc.EnableRaisingEvents = true;

 //PWD: Password if the file has any
 //SRC: The path of your rar file. e.g: c:\temp\abc.rar
 //DES: The path you want it to be extracted. e.g: d:\extracted

 //ATTENTION: DESTINATION FOLDER MUST EXIST!

 proc.StartInfo.Arguments = String.Format("x -p{0} {1} {2}", PWD, SRC, DES);


 proc.Start();

答案 5 :(得分:0)

您可以直接使用此库:http://sevenziplib.codeplex.com/

  

SevenZipLib是一个轻量级,易于使用的7-zip库托管界面。

答案 6 :(得分:0)

正如Kjartan建议的那样,使用7-Zip SDK可能是比根据您的使用产生外部可执行文件更好的选择:

7-Zip SDK是一个C / C ++库,http://sevenzipsharp.codeplex.com/在7-Zip SDK周围有一个.Net库,可以更容易地在.NET中使用。

答案 7 :(得分:0)

9答案,只有山姆·穆萨维直接回答你的问题,但没有人告诉你这是什么问题。引自WinRAR手册:

  

......命令:WinRAR x Fonts *.ttf NewFonts\
      将* .ttf文件从存档字体中提取到文件夹NewFonts
      您需要使用上面示例中的尾部反斜杠来表示目标文件夹。

而这正是c:\download所缺少的。现在它尝试将存档中的文件 c:\ download 解压缩到当前目录。第一次如何运作是一个谜。

答案 8 :(得分:0)

我们也可以使用它,

string SourceFile = @"G:\SourceFolder\125.rar";
string DestinationPath = @"G:\Destination\";
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = @"G:\Software\WinRAR.exe";
process.StartInfo.CreateNoWindow = true;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
process.EnableRaisingEvents = false;            
process.StartInfo.Arguments = string.Format("x -o+ \"{0}\" \"{1}\"", SourceFile, DestinationPath);
process.Start();