storageabstraction

package
v0.0.5-dev.12 Latest Latest
Warning

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

Go to latest
Published: Oct 20, 2023 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FileInfo added in v0.0.2

type FileInfo struct {
	// contains filtered or unexported fields
}

func NewFileInfo

func NewFileInfo(size int64, isDir bool) *FileInfo

func (*FileInfo) IsDir added in v0.0.2

func (fileInfo *FileInfo) IsDir() bool

func (*FileInfo) ModTime

func (fileInfo *FileInfo) ModTime() time.Time

func (*FileInfo) Mode

func (fileInfo *FileInfo) Mode() fs.FileMode

func (*FileInfo) Name

func (fileInfo *FileInfo) Name() string

func (*FileInfo) Size added in v0.0.2

func (fileInfo *FileInfo) Size() int64

func (*FileInfo) Sys

func (fileInfo *FileInfo) Sys() any

type IFileStorage

type IFileStorage interface {
	Write(fileName string, fileSize int64, reader io.ReadSeeker) error
	Read(fileName string) (io.ReadCloser, error)
	FileSize(fileName string) (int64, error)
	DeleteDirectory(directory string) error
	DeleteFile(fileName string) error
	Walk(directory string, walk WalkFunc) error
	Join(paths ...string) string
}

IFileStorage is the interface for a filestorage used by the ecosystem

type WalkFunc added in v0.0.2

type WalkFunc func(path string, info os.FileInfo, err error) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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