我知道使用 MSBuild 扩展包我可以解压缩 Zip 文件,但在我的项目中我需要解压缩 RAR 文件。
我怎样才能做到这一点?
使用 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=""$(RarExe)" x "$(archive)" "$(targetDir)"" />
</Target>
</Project>