Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrNonSeekableFile = errors.New("file non-seekable") ErrAlreadyClosed = errors.New("file was already closed") ErrFileWriteModeAlreadyOpen = errors.New("previous file in write mode already open") ErrReadOnlyFile = errors.New("file is read-only") ErrWriteOnlyFile = errors.New("file is write-only") )
Functions ¶
This section is empty.
Types ¶
type SivaFS ¶
type SivaFS interface { billy.Basic billy.Dir // Sync closes any open files, this method should be called at the end of // program to ensure that all the files are properly closed, otherwise the // siva file will be corrupted. Sync() error }