Go 1.2에서 비밀번호로 보호된 ZIP 파일 압축 해제
Go 1.2의 archive/zip 패키지는 ZIP 아카이브 처리를 위한 기본 기능을 제공하지만 부족합니다. 비밀번호 보호를 지원합니다. 비밀번호로 보호된 ZIP 파일의 압축을 풀려면 os/exec 패키지를 활용하여 7zip과 같은 외부 도구를 호출할 수 있습니다.
이렇게 하려면 다음 단계를 따르세요.
7za a sample.zip name.txt -p"your_password" -mem=AES256
<code class="go">import ( "fmt" "os/exec" ) func extractZipWithPassword() { fmt.Printf("Unzipping `%s` to directory `%s`\n", zip_path, extract_path) commandString := fmt.Sprintf(`7za e %s -o%s -p"%s" -aoa`, zip_path, extract_path, zip_password) commandSlice := strings.Fields(commandString) fmt.Println(commandString) c := exec.Command(commandSlice[0], commandSlice[1:]...) e := c.Run() checkError(e) }</code>
이 코드 조각에서:
<code class="go">// Shows how to extract an passsword encrypted zip file using 7zip. // By Larry Battle <https://github.com/LarryBattle> // Answer to http://stackoverflow.com/questions/20330210/golang-1-2-unzip-password-protected-zip-file // 7-zip.chm - http://sevenzip.sourceforge.jp/chm/cmdline/switches/index.htm // Effective Golang - http://golang.org/doc/effective_go.html package main import ( "fmt" "os" "os/exec" "path/filepath" "strings" ) // ... func main() { // ... extractZipWithPassword() // ... }</code>
go run main.go
프로그램은 비밀번호로 보호된 ZIP 파일을 지정된 디렉토리에 추출합니다.
위 내용은 Go 1.2에서 비밀번호로 보호된 ZIP 파일의 압축을 푸는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!