Documentation
¶
Index ¶
- Variables
- func New(r *zip.Reader) fs.FS
- type FS
- func (fs *FS) Chmod(name string, mode os.FileMode) error
- func (fs *FS) Chown(name string, uid, gid int) error
- func (fs *FS) Chtimes(name string, atime time.Time, mtime time.Time) error
- func (fs *FS) Create(name string) (fs.File, error)
- func (fs *FS) Mkdir(name string, perm fs.FileMode) error
- func (fs *FS) MkdirAll(path string, perm fs.FileMode) error
- func (fs *FS) Name() string
- func (fs *FS) Open(name string) (fs.File, error)
- func (fs *FS) OpenFile(name string, flag int, perm fs.FileMode) (fs.File, error)
- func (fs *FS) Remove(name string) error
- func (fs *FS) RemoveAll(path string) error
- func (fs *FS) Rename(oldname, newname string) error
- func (fs *FS) Stat(name string) (fs.FileInfo, error)
- type File
- func (f *File) Close() (err error)
- func (f *File) Name() string
- func (f *File) Read(p []byte) (n int, err error)
- func (f *File) ReadAt(p []byte, off int64) (n int, err error)
- func (f *File) Readdir(count int) (fi []fs.FileInfo, err error)
- func (f *File) Readdirnames(count int) (names []string, err error)
- func (f *File) Seek(offset int64, whence int) (int64, error)
- func (f *File) Stat() (fs.FileInfo, error)
- func (f *File) Sync() error
- func (f *File) Truncate(size int64) error
- func (f *File) Write(p []byte) (n int, err error)
- func (f *File) WriteAt(p []byte, off int64) (n int, err error)
- func (f *File) WriteString(s string) (ret int, err error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrOutOfRange = errors.New("out of range")
Functions ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.