我已经编写了以下代码,将目录中的多个文件夹压缩为各自的压缩文件。
#Current path to directory
$fileLocation = read-host "Type/Paste location"
$zipFilesPath = cd "$fileLocation"
$currentDirectory = pwd
$source = Get-ChildItem -Path $currentDirectory -Directory
gci | Where-Object{($_.PSIsContainer)} | foreach-object{$_.Name}
Add-Type -assembly "system.io.compression.filesystem"
Foreach ($s in $source) {
$zipDestination = Join-path -path $currentDirectory -ChildPath "$($s.name).zip"
If(Test-path $zipDestination){
Remove-item $zipDestination
}
[io.compression.zipfile]::CreateFromDirectory($s.fullname, $zipDestination)
}
#Clear Console
clear
#Read-Host -Prompt “Press Enter to exit”
start .\
单独的拉链部分有效-我花了一段时间,但我设法完成了。
例如 zipfolder1
zipfolder2
zipfolder3
zipfolder1.zip
zipfolder2.zip
zipfolder3.zip
我的问题是,当我压缩文件时,我不只是希望它循环浏览文件夹并压缩文件夹中的内容,而是直接压缩文件夹。
脚本当前输出的内容:
zipfolder1.zip> [从zipfolder1文件夹中提取的zip文件]
我希望它输出什么:
zipfolder.zip> zipfolder1> [从zipfolder1文件夹中提取的zip文件]
这可能吗?基本上,我想将文件夹本身保留在zip中-而不仅仅是内容
答案 0 :(得分:0)
我只使用Compress-Archive
命令集:
$fileLocation = read-host "Type/Paste location"
$directories = Get-ChildItem -Path $fileLocation -Directory
foreach ($directory in $directories) {
Compress-Archive -Path $directory.FullName -DestinationPath "$($directory.FullName).zip" -Force
}
请注意,只有在压缩目录时,它才会压缩目录。