0

我知道使用 MSBuild 扩展包我可以解压缩 Zip 文件,但在我的项目中我需要解压缩 RAR 文件。

我怎样才能做到这一点?

4

1 回答 1

2

使用 Exec 通过 winrar.exe/rar.exe 提取存档。如果您已经安装了 WinRar,您可以从注册表中提取其 installdir,否则请指定您的 rar.exe 所在的位置。

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">

<Target Name="ExtractRar">
    <PropertyGroup>
        <RarExe>$(registry:HKEY_LOCAL_MACHINE\Software\Winrar@exe32)</RarExe>
        <archive>E:\sample.rar</archive>
        <targetDir>E:\ExtratedArchive\</targetDir>
    </PropertyGroup>
    <Exec Command="&quot;$(RarExe)&quot; x &quot;$(archive)&quot; &quot;$(targetDir)&quot;" /> 
</Target>

</Project>
于 2013-09-27T21:22:47.283 回答