filesystem

package
v1.1.15 Latest Latest
Warning

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

Go to latest
Published: Jan 19, 2024 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Driver

type Driver interface {
	WithContext(ctx context.Context) Driver
	Put(file string, content []byte) error
	PutFile(path string, source File) (string, error)
	PutFileAs(path string, source File, name string) (string, error)
	Get(file string) ([]byte, error)
	Size(file string) (int64, error)
	Path(file string) string
	Exists(file string) bool
	Missing(file string) bool
	// Url Download(path string)
	Url(file string) string
	TemporaryUrl(file string, time time.Time) (string, error)
	Copy(oldFile, newFile string) error
	Move(oldFile, newFile string) error
	Delete(file ...string) error
	Files(path string) ([]string, error)
	AllFiles(path string) ([]string, error)
	Directories(path string) ([]string, error)
	AllDirectories(path string) ([]string, error)
	MakeDirectory(directory string) error
	DeleteDirectory(directory string) error
}

type File

type File interface {
	Disk(disk string) File
	File() string
	Store(path string) (string, error)
	StoreAs(path string, name string) (string, error)
	GetClientOriginalName() string
	GetClientOriginalExtension() string
	HashName(path ...string) string
	Extension() (string, error)
}

type Option

type Option func(options *Options)

type Options

type Options struct {
	Name string
}

type Storage

type Storage interface {
	Driver
	Disk(disk string) Driver
}

Jump to

Keyboard shortcuts

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