使用 Winrar 使用 C# 或批处理自动提取 ISO

本文关键字:使用 提取 ISO 批处理 Winrar | 更新日期: 2023-09-27 18:34:00

我正在尝试将 ISO 提取到具有相同名称的文件夹中,最后没有.iso。

我在使用 winrar 时遇到了问题,因为当我在具有 ISO 的文件夹中启动搜索时,它不会启动提取。

使用应答代码更新

private void ExtractISO(string toExtract, string folderName)
    {
        // reads the ISO
        CDReader Reader = new CDReader(File.Open(toExtract, FileMode.Open), true);
        // passes the root directory the folder name and the folder to extract
        ExtractDirectory(Reader.Root, folderName /*+ Path.GetFileNameWithoutExtension(toExtract)*/ + "''", "");
        // clears reader and frees memory
        Reader.Dispose();
    }
    private void ExtractDirectory(DiscDirectoryInfo Dinfo, string RootPath, string PathinISO)
    {
        if (!string.IsNullOrWhiteSpace(PathinISO))
        {
            PathinISO += "''" + Dinfo.Name;
        }
        RootPath += "''" + Dinfo.Name;
        AppendDirectory(RootPath);
        foreach (DiscDirectoryInfo dinfo in Dinfo.GetDirectories())
        {
            ExtractDirectory(dinfo, RootPath, PathinISO);
        }
        foreach (DiscFileInfo finfo in Dinfo.GetFiles())
        {
            using (Stream FileStr = finfo.OpenRead())
            {
                using (FileStream Fs = File.Create(RootPath + "''" + finfo.Name)) // Here you can Set the BufferSize Also e.g. File.Create(RootPath + "''" + finfo.Name, 4 * 1024)
                {
                    FileStr.CopyTo(Fs, 4 * 1024); // Buffer Size is 4 * 1024 but you can modify it in your code as per your need
                }
            }
        }
    }
    static void AppendDirectory(string path)
    {
        try
        {
            if (!Directory.Exists(path))
            {
                Directory.CreateDirectory(path);
            }
        }
        catch (DirectoryNotFoundException Ex)
        {
            AppendDirectory(Path.GetDirectoryName(path));
        }
        catch (PathTooLongException Ex)
        {
            AppendDirectory(Path.GetDirectoryName(path));
        }
    }

用户选择要提取的文件夹 (.ISO) 提取。然后,我在后台工作线程的Process.Start()中使用它。这似乎只是打开了安装软件,并没有将ISO提取到所需的文件夹名称。

提前感谢您的帮助。

或者,如果有人可以给我一个批处理来提取 ISO 并从 c# 传递到 Extract 和文件夹名称调用它,那也会有所帮助。

谢谢

使用 Winrar 使用 C# 或批处理自动提取 ISO

如果外部类库没问题!

然后使用SevenZipSharp.NET DiscUtils提取 ISO 的...

这两个类库可以管理 ISO 并提取它们!

对于DiscUtils,您可以在我提供的链接中找到ISO 管理[CDReader类]的一些代码。

但是对于SevenZipSharp,请浏览类库源代码并找到要提取的代码或谷歌找到它!

要获取文件夹的名称,只需使用 Path.GetFileNameWithoutExtension((string)ISOFileName) 它将返回名为 "ISOFile.iso" 的 iso 的"ISOFile"。然后,您可以将它与所需的路径一起使用。

更新

使用DiscUtils提取ISO映像的代码:

using DiscUtils;
using DiscUtils.Iso9660;
void ExtractISO(string ISOName, string ExtractionPath)
{
    using (FileStream ISOStream = File.Open(ISOName, FileMode.Open))
    {
        CDReader Reader = new CDReader(ISOStream, true, true);
        ExtractDirectory(Reader.Root, ExtractionPath + Path.GetFileNameWithoutExtension(ISOName) + "''", "");
        Reader.Dispose();
    }
}
void ExtractDirectory(DiscDirectoryInfo Dinfo, string RootPath, string PathinISO)
{
    if (!string.IsNullOrWhiteSpace(PathinISO))
    {
        PathinISO += "''" + Dinfo.Name;
    }
    RootPath += "''" + Dinfo.Name;
    AppendDirectory(RootPath);
    foreach (DiscDirectoryInfo dinfo in Dinfo.GetDirectories())
    {
        ExtractDirectory(dinfo, RootPath, PathinISO);
    }
    foreach (DiscFileInfo finfo in Dinfo.GetFiles())
    {
            using (Stream FileStr = finfo.OpenRead())
            {
                using (FileStream Fs = File.Create(RootPath + "''" + finfo.Name)) // Here you can Set the BufferSize Also e.g. File.Create(RootPath + "''" + finfo.Name, 4 * 1024)
                {
                    FileStr.CopyTo(Fs, 4 * 1024); // Buffer Size is 4 * 1024 but you can modify it in your code as per your need
                }
            }
    }
}
static void AppendDirectory(string path)
{
    try
    {
        if (!Directory.Exists(path))
        {
            Directory.CreateDirectory(path);
        }
    }
    catch (DirectoryNotFoundException Ex)
    {
        AppendDirectory(Path.GetDirectoryName(path));
    }
    catch (PathTooLongException Exx)
    {
        AppendDirectory(Path.GetDirectoryName(path));
    }
}

像这样使用它:

ExtractISO(ISOFileName, Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory) + "''");

加工!由我测试!

当然,您可以随时为代码添加更多优化...

此代码只是一个基本代码!

对于UDF或在没有需要的服务(DISM)后制作Windows ISO文件,上述接受的答案对我不起作用,所以我尝试了DiscUtils的这种工作方法

using DiscUtils;
public static void ReadIsoFile(string sIsoFile, string sDestinationRootPath)
        {
            Stream streamIsoFile = null;
            try
            {
                streamIsoFile = new FileStream(sIsoFile, FileMode.Open);
                DiscUtils.FileSystemInfo[] fsia = FileSystemManager.DetectDefaultFileSystems(streamIsoFile);
                if (fsia.Length < 1)
            {
                MessageBox.Show("No valid disc file system detected.");
            }
            else
            {
                DiscFileSystem dfs = fsia[0].Open(streamIsoFile);                    
                ReadIsoFolder(dfs, @"", sDestinationRootPath);
                return;
            }
        }
        finally
        {
            if (streamIsoFile != null)
            {
                streamIsoFile.Close();
            }
        }
    }
public static void ReadIsoFolder(DiscFileSystem cdReader, string sIsoPath, string sDestinationRootPath)
    {
        try
        {
            string[] saFiles = cdReader.GetFiles(sIsoPath);
            foreach (string sFile in saFiles)
            {
                DiscFileInfo dfiIso = cdReader.GetFileInfo(sFile);
                string sDestinationPath = Path.Combine(sDestinationRootPath, dfiIso.DirectoryName.Substring(0, dfiIso.DirectoryName.Length - 1));
                if (!Directory.Exists(sDestinationPath))
                {
                    Directory.CreateDirectory(sDestinationPath);
                }
                string sDestinationFile = Path.Combine(sDestinationPath, dfiIso.Name);
                SparseStream streamIsoFile = cdReader.OpenFile(sFile, FileMode.Open);
                FileStream fsDest = new FileStream(sDestinationFile, FileMode.Create);
                byte[] baData = new byte[0x4000];
                while (true)
                {
                    int nReadCount = streamIsoFile.Read(baData, 0, baData.Length);
                    if (nReadCount < 1)
                    {
                        break;
                    }
                    else
                    {
                        fsDest.Write(baData, 0, nReadCount);
                    }
                }
                streamIsoFile.Close();
                fsDest.Close();
            }
            string[] saDirectories = cdReader.GetDirectories(sIsoPath);
            foreach (string sDirectory in saDirectories)
            {
                ReadIsoFolder(cdReader, sDirectory, sDestinationRootPath);
            }
            return;
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
        }
    }

它已从应用程序源 ISOReader 中提取,但根据我的要求进行了修改

总来源可在 http://www.java2s.com/Open-Source/CSharp_Free_CodeDownload/i/isoreader.zip

试试这个:

string Desktop = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
Process.Start("Winrar.exe", string.Format("x {0} {1}",
   Desktop + "''test.rar",
   Desktop + "''SomeFolder"));

这会将文件test.rar提取到文件夹SomeFolder。您可以将.rar扩展更改为.iso,它的工作原理相同。

据我在您当前的代码中看到,没有给出提取文件的命令,也没有必须提取的文件的路径。试试这个例子,让我知道它是否有效=]

附言如果要隐藏提取屏幕,可以将YourProcessInfo.WindowStyle设置为 ProcessWindowStyle.Hidden

我最近对这种.iso提取问题感到困惑。在尝试了几种方法后,7zip为我完成了这项工作,您只需要确保系统上安装了最新版本的7zip即可。也许它会有所帮助 尝试 {

            Process cmd = new Process();
            cmd.StartInfo.FileName = "cmd.exe";
            cmd.StartInfo.RedirectStandardInput = true;
            cmd.StartInfo.RedirectStandardOutput = true;
            cmd.StartInfo.CreateNoWindow = false;
            cmd.StartInfo.UseShellExecute = false;
            cmd.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
            cmd.Start();
            cmd.StandardInput.WriteLine("C:");
            //Console.WriteLine(cmd.StandardOutput.Read());
            cmd.StandardInput.Flush();
            cmd.StandardInput.WriteLine("cd C:'''"Program Files'"''7-Zip''");
            //Console.WriteLine(cmd.StandardOutput.ReadToEnd());
            cmd.StandardInput.Flush();

            cmd.StandardInput.WriteLine(string.Format("7z x -y -o{0} {1}", source, copyISOLocation.TempIsoPath));
            //Console.WriteLine(cmd.StandardOutput.ReadToEnd());
            cmd.StandardInput.Flush();
            cmd.StandardInput.Close();
            cmd.WaitForExit();
            Console.WriteLine(cmd.StandardOutput.ReadToEnd());
        }
        catch (Exception e)
        {
            Console.WriteLine(e.Message + "'n" + e.StackTrace);
            if (e.InnerException != null)
            {
                Console.WriteLine(e.InnerException.Message + "'n" + e.InnerException.StackTrace);
            }
        }