■ ZIP 파일을 생성하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 |
$SourceDirectoryPath = "d:\test" $TargetFilePath = "d:\test.zip" Add-Type -AssemblyName "system.io.compression.filesystem" [System.IO.Compression.ZipFile]::CreateFromDirectory($SourceDirectoryPath, $TargetFilePath) |
※ ZIP 파일을 조사하면 test 폴더가 없이 test 폴더의 파일과 서브 폴더만 포함된 것을 확인할 수 있다.