我會建議將文件複製到臨時目錄並壓縮。例如:
$path = "test"
$filter = "*.config"
#To support both absolute and relative paths..
$pathitem = Get-Item -Path $path
#If sourcepath exists
if($pathitem) {
#Get name for tempfolder
$tempdir = Join-Path $env:temp "CompressArchiveTemp"
#Create temp-folder
New-Item -Path $tempdir -ItemType Directory -Force | Out-Null
#Copy files
Copy-Item -Path $pathitem.FullName -Destination $tempdir -Filter $filter -Recurse
#Get items inside "rootfolder" to avoid that the rootfolde "test" is included.
$sources = Get-ChildItem -Path (Join-Path $tempdir $pathitem.Name) | Select-Object -ExpandProperty FullName
#Create zip from tempfolder
Compress-Archive -Path $sources -DestinationPath config-files.zip
#Remove temp-folder
Remove-Item -Path $tempdir -Force -Recurse
}
你是什麼意思?找到一個配置文件,壓縮它(只有配置文件),並將該zip文件保存在與配置文件相同的位置? –
我添加了一個插圖。 –
文件結構是唯一清晰的部分tbh。期望的輸出是什麼樣的?你想要一個包含所有配置文件的zip文件?或每個配置文件一個zip文件? –