archive

package module
v1.1.3 Latest Latest
Warning

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

Go to latest
Published: Jul 25, 2018 License: MIT Imports: 4 Imported by: 21

README

archive

A simple Go archiving library.

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. We appreciate your contribution. Please refer to our contributing guidelines.

Software License Travis Coverage Status Go Doc Go Report Card

Example usage

file, err := os.Create("file.zip")
if err != nil {
  // deal with the error
}
archive := archive.New(file)
defer archive.Close()
archive.Add("file.txt", "/path/to/file.txt")

Documentation

Overview

Package archive provides tar.gz and zip archiving

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Archive

type Archive interface {
	Close() error
	Add(name, path string) error
}

Archive represents a compression archive files from disk can be written to.

func New

func New(file *os.File) Archive

New archive If the exentions of the target file is .zip, the archive will be in the zip format, otherwise, it will be a tar.gz archive.

Directories

Path Synopsis
Package tar implements the Archive interface providing tar.gz archiving and compression.
Package tar implements the Archive interface providing tar.gz archiving and compression.
Package zip implements the Archive interface providing zip archiving and compression.
Package zip implements the Archive interface providing zip archiving and compression.

Jump to

Keyboard shortcuts

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