tmp

package
v0.52.0 Latest Latest
Warning

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

Go to latest
Published: Aug 19, 2021 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

Package tmp provides temporary files and directories.

Usage of this package requires eng approval - ask before using.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Dir

type Dir interface {
	io.Closer

	AbsPath() string
}

Dir is a temporary directory.

It must be closed when done.

func NewDir

func NewDir(options ...DirOption) (Dir, error)

NewDir returns a new temporary directory.

It must be closed when done. This file will be deleted on interrupt signals.

Usage of this function requires eng approval - ask before using.

type DirOption added in v0.32.0

type DirOption func(*dirOptions)

DirOption is an option for NewDir.

func DirWithBasePath added in v0.32.0

func DirWithBasePath(basePath string) DirOption

DirWithBasePath returns a new DirOption that sets the base path to create the temporary directory in.

The default is to use os.TempDir().

type File

type File interface {
	io.Closer

	AbsPath() string
}

File is a temporary file

It must be closed when done.

func NewFileWithData

func NewFileWithData(data []byte) (File, error)

NewFileWithData returns a new temporary file with the given data.

It must be closed when done. This file will be deleted on interrupt signals.

Usage of this function requires eng approval - ask before using.

Jump to

Keyboard shortcuts

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