我試圖將一個文本文件複製/移動到壓縮文件中。我不想將其解壓縮,將文件複製並壓縮回去。有什麼方法可以直接將文本文件複製或移動到PowerShell中的壓縮文件中。當我在PowerShell中做這件事的時候,它正在做這件事之後,當我嘗試查看zip文件時,它說無效路徑。如何將單個文本文件移動到PowerShell中的壓縮文件3
PowerShell命令:
$A = "20160914.4"
New-Item "C:\test\VersionLabel.txt" -ItemType file
$A | Set-Content "C:\test\VersionLabel.txt"
Copy-Item "C:\test\VersionLabel.txt" "C:\test\Abc.zip" -Force
Error: The compressed folder is invalid
[如何使用PowerShell創建zip存檔?](https://stackoverflow.com/a/12978117),您可以通過ZipArchive或ZipPackage或zip文件夾命名空間手動完成。相關問題有很多答案。 – wOxxOm