ディレクトリに多数のファイルがあります。 makecabを試してみましたが、フォルダー内のすべてのファイルがcabファイルに含まれていません。
makecab /d "C:\Users\crtorres\Documents\- SouthPacific Project 2014\- Projects\Sales Doc Center\New Region" test.cab
以下は機能しますが、cabファイルにはマニフェストファイルしかありません。 makecab manifest.xml test.cab
最終的に、これを実際に適切に行うことができるスクリプトを作成しました(PowerShellを使用)
私はよく外注するので、WSPBuilderは使用しません。また、新しいソフトウェア/追加ファイルをダウンロードするのは不便です。これはOOTBで動作します。
function compress-directory([string]$dir, [string]$output)
{
$ddf = ".OPTION EXPLICIT
.Set CabinetNameTemplate=$output
.Set DiskDirectory1=.
.Set CompressionType=MSZIP
.Set Cabinet=on
.Set Compress=on
.Set CabinetFileCountThreshold=0
.Set FolderFileCountThreshold=0
.Set FolderSizeThreshold=0
.Set MaxCabinetSize=0
.Set MaxDiskFileCount=0
.Set MaxDiskSize=0
"
$dirfullname = (get-item $dir).fullname
$ddfpath = ($env:TEMP+"\temp.ddf")
$ddf += (ls -recurse $dir | where { !$_.PSIsContainer } | select -ExpandProperty FullName | foreach { '"' + $_ + '" "' + ($_ | Split-Path -Leaf) + '"' }) -join "`r`n"
$ddf
$ddf | Out-File -Encoding UTF8 $ddfpath
makecab.exe /F $ddfpath
rm $ddfpath
rm setup.inf
rm setup.rpt
}
私が何か間違ったことをしている場合や、改善できる場合はお知らせください。
参考のために:
http://www.pseale.com/blog/StrongOpinionSayNoToMAKECABEXE.aspx
注:Jerry Coteによる変更、編集ノートを参照