PowerShell文件的解压与压缩
Posted Xiao-C
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PowerShell文件的解压与压缩相关的知识,希望对你有一定的参考价值。
1 New-Item -ItemType File 1.txt -Force #新建文本文件 2 Compress-Archive -Path ‘1.txt‘ -DestinationPath ‘1.zip‘ -Force #压缩为zip 3 Expand-Archive -Path ‘1.zip‘ -DestinationPath ‘新建文件夹‘ -Force #解压到新文件夹内
以上是关于PowerShell文件的解压与压缩的主要内容,如果未能解决你的问题,请参考以下文章