> 백엔드 개발 > Golang > 기본 지원 없이 Golang 1.2에서 비밀번호로 보호된 ZIP 파일을 추출하는 방법은 무엇입니까?

기본 지원 없이 Golang 1.2에서 비밀번호로 보호된 ZIP 파일을 추출하는 방법은 무엇입니까?

Mary-Kate Olsen
풀어 주다: 2024-10-31 01:46:29
원래의
791명이 탐색했습니다.

How to Extract Password-Protected ZIP Files in Golang 1.2 without Native Support?

기본 지원 없이 Golang 1.2에서 비밀번호로 보호된 ZIP 파일 추출

Go 1.2의 archive/zip 패키지는 기본적인 ZIP 기능을 제공하지만, 비밀번호로 보호된 아카이브를 처리하는 메커니즘이 부족합니다. 이러한 공백을 메우기 위해 권장되는 접근 방식은 os/exec 패키지를 활용하고 7-zip과 같은 외부 도구를 활용하여 추출을 수행하는 것입니다.

7-zip을 사용하여 비밀번호로 보호된 ZIP 파일 추출

7-zip은 비밀번호로 보호된 ZIP 파일을 포함하여 아카이브를 조작하기 위한 강력한 명령줄 기능을 제공합니다. os/exec를 사용하여 Go에서 이를 달성할 수 있는 방법은 다음과 같습니다.

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

func extractZipWith7zip(zipPath, extractPath, password string) {
    cmdString := fmt.Sprintf("7za e %s -o%s -p%s", zipPath, extractPath, password)
    cmd := exec.Command("7za", strings.Fields(cmdString)...)
    err := cmd.Run()
    if err != nil {
        panic(err)
    }
}</code>
로그인 후 복사

예제 프로그램

다음 Go 프로그램은 비밀번호로 보호된 파일을 생성하는 전체 프로세스를 보여줍니다. ZIP 파일, 7-zip을 사용하여 압축 풀기 및 추출된 내용 확인:

<code class="go">package main

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

var (
    originalText = "Sample file created"
    txtFilename  = "name.txt"
    zipFilename  = "sample.zip"
    zipPassword  = "42"

    dirPath = "./test"
    srcPath = filepath.Join(dirPath, "src")
    extractPath = filepath.Join(dirPath, "extracted")
    txtPath = filepath.Join(srcPath, txtFilename)
    zipPath = filepath.Join(srcPath, zipFilename)
)

func main() {
    fmt.Println("# Setup")
    setupTestDirectory()
    createSampleFile()
    createZipWithPassword()
    fmt.Println("# Extraction of password-protected ZIP...")
    extractZipWithPassword()
    verifyExtractedFile()
    fmt.Println("Done.")
}

func setupTestDirectory() {
    os.RemoveAll(dirPath)
    os.MkdirAll(srcPath, os.ModePerm)
    os.MkdirAll(extractPath, os.ModePerm)
}

func createSampleFile() {
    file, err := os.Create(txtPath)
    if err != nil {
        panic(err)
    }
    defer file.Close()
    _, err = file.WriteString(originalText)
    if err != nil {
        panic(err)
    }
}

func createZipWithPassword() {
    cmdString := fmt.Sprintf("7za a %s %s -p%s", zipPath, txtPath, zipPassword)
    cmd := exec.Command("7za", strings.Fields(cmdString)...)
    err := cmd.Run()
    if err != nil {
        panic(err)
    }
}

func extractZipWithPassword() {
    cmdString := fmt.Sprintf("7za e %s -o%s -p%s", zipPath, extractPath, zipPassword)
    cmd := exec.Command("7za", strings.Fields(cmdString)...)
    err := cmd.Run()
    if err != nil {
        panic(err)
    }
}

func verifyExtractedFile() {
    extractedPath := filepath.Join(extractPath, txtFilename)
    content, err := os.ReadFile(extractedPath)
    if err != nil {
        panic(err)
    }
    if string(content) != originalText {
        panic("Extracted content mismatch")
    }
}</code>
로그인 후 복사

참고: 7-zip이 시스템에 설치되어 있고 시스템 경로에 포함되어 있는지 확인하세요. 이 작업 방식을 사용하세요.

위 내용은 기본 지원 없이 Golang 1.2에서 비밀번호로 보호된 ZIP 파일을 추출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿