zip

package
v0.0.0-...-907fb87 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 24, 2023 License: MIT Imports: 5 Imported by: 0

Documentation

Overview

Package zip は zip に関するユーティリティです。

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Dictionary

type Dictionary interface {
	// Contains は、そのファイルが存在する場合に true を返します。
	Contains(filepath string) bool
	// Get は、そのファイルの中身を取得します。
	Get(filepath string) ([]byte, error)
	// GetReader は、そのファイルのReaderを取得します。
	GetReader(filepath string) (io.ReadCloser, error)
	// FileHeader は、そのファイルの情報を取得します。
	File(filepath string) ZippedFile
	// FilePaths はファイルの一覧を取得します。
	FilePaths() []string
	// Close は Dictionary をクローズします。
	Close()
	// 大文字小文字を区別する場合は真を返します。
	IsIgnoreCapital() bool
}

Dictionary は zip 内のファイルの辞書です。

func OpenDictionary

func OpenDictionary(zippath string, ignoreCapital bool) (Dictionary, error)

OpenDictionary は Dictionary を取得します。

type ZippedFile

type ZippedFile interface {
	NameUTF8() string
	File() *azip.File
}

ZippedFile はzipのエントリとしてのファイルです。

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL