>  기사  >  백엔드 개발  >  7zip을 사용하여 Go 1.2에서 비밀번호로 보호된 ZIP 파일의 압축을 해제하는 방법은 무엇입니까?

7zip을 사용하여 Go 1.2에서 비밀번호로 보호된 ZIP 파일의 압축을 해제하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-04 03:12:02973검색

How to Unzip Password-Protected ZIP Files in Go 1.2 Using 7zip?

Go 1.2에서 비밀번호로 보호된 ZIP 파일 압축 풀기

os/exec 패키지는 외부 명령과 상호 작용하는 편리한 방법을 제공합니다. Go 1.2에서 7zip을 사용하여 암호화된 ZIP 파일의 압축을 풀려면 다음을 고려하세요.

archive/zip 패키지는 기본적인 ZIP 조작 기능을 제공합니다. 비밀번호로 보호된 ZIP 파일을 추출하는 데 사용하는 대신 os/exec를 통해 7zip을 사용할 수 있습니다.

다음 그림은 다음과 같습니다.

<code class="go">import (
    "fmt"
    "os/exec"
    "strings"
)

func extractZipWithPassword() {
    fmt.Printf("Unzipping `%s` to directory `%s`\n", zipPath, extractPath)
    commandString := fmt.Sprintf(`7za e %s -o%s -p"%s" -aoa`, zipPath, extractPath, zipPassword)
    commandSlice := strings.Fields(commandString)
    fmt.Println(commandString)
    c := exec.Command(commandSlice[0], commandSlice[1:]...)
    e := c.Run()
    checkError(e)
}</code>

7zip을 사용한 예제 프로그램

<code class="go">package main

import (
    "fmt"
    "os"
    "os/exec"
    "path/filepath"
    "strings"
)

var (
    // Your variables and paths...
)

func main() {
    fmt.Println("# Setup")
    //...
    fmt.Println("# Answer to question...")
    extractZipWithPassword()
    //...
    fmt.Println("Done.")
}</code>

출력:

# Setup
# Answer to question...
Unzipping `test/src/sample.zip` to directory `test/extracted`
7za e test/src/sample.zip -otest/extracted -p"42" -aoa
Reading test/extracted/name.txt
Done.

이 접근 방식을 사용하면 Go 1.2에서 7zip을 사용하여 비밀번호로 보호된 ZIP 파일의 압축을 풀 수 있습니다.

위 내용은 7zip을 사용하여 Go 1.2에서 비밀번호로 보호된 ZIP 파일의 압축을 해제하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.