Documentation ¶
Index ¶
- func New(r *zip.Reader) afero.Afero
- 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 []os.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() (os.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)
- 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) (afero.File, error)
- func (fs *Fs) Mkdir(name string, perm os.FileMode) error
- func (fs *Fs) MkdirAll(path string, perm os.FileMode) error
- func (fs *Fs) Name() string
- func (fs *Fs) Open(name string) (afero.File, error)
- func (fs *Fs) OpenFile(name string, flag int, perm os.FileMode) (afero.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) (os.FileInfo, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type File ¶
type File struct {
// contains filtered or unexported fields
}
File 代表一个 ZIP 文件或目录
func (*File) ReadAt ¶
ReadAt 从指定的偏移量读取文件内容到指定的字节切片 参数:
- p: []byte 读取的目标缓冲区
- off: int64 读取的偏移量
返回值:
- int 读取的字节数
- error 可能的错误
func (*File) Readdirnames ¶
Readdirnames 读取目录项名称 参数:
- count: int 读取的目录项数量
返回值:
- []string 目录项名称
- error 可能的错误
func (*File) Seek ¶
Seek 移动文件读取指针 参数:
- offset: int64 读取偏移量
- whence: int 偏移基准
返回值:
- int64 新的偏移量
- error 可能的错误
type Fs ¶
type Fs struct {
// contains filtered or unexported fields
}
Fs 代表一个只读的 ZIP 文件系统
func (*Fs) Chmod ¶
Chmod 修改文件权限(只读文件系统,不支持) 参数:
- name: string 文件名
- mode: os.FileMode 文件权限
返回值:
- error 可能的错误
func (*Fs) Chown ¶
Chown 修改文件所有者(只读文件系统,不支持) 参数:
- name: string 文件名
- uid: int 用户ID
- gid: int 组ID
返回值:
- error 可能的错误
func (*Fs) Chtimes ¶
Chtimes 修改文件时间(只读文件系统,不支持) 参数:
- name: string 文件名
- atime: time.Time 访问时间
- mtime: time.Time 修改时间
返回值:
- error 可能的错误
func (*Fs) Mkdir ¶
Mkdir 创建新目录(只读文件系统,不支持) 参数:
- name: string 目录名
- perm: os.FileMode 目录权限
返回值:
- error 可能的错误
func (*Fs) MkdirAll ¶
MkdirAll 创建多级目录(只读文件系统,不支持) 参数:
- path: string 目录路径
- perm: os.FileMode 目录权限
返回值:
- error 可能的错误
func (*Fs) OpenFile ¶
OpenFile 打开文件,带有标志和权限(只读文件系统,只支持只读) 参数:
- name: string 文件名
- flag: int 打开标志
- perm: os.FileMode 文件权限
返回值:
- afero.File 文件接口
- error 可能的错误
Click to show internal directories.
Click to hide internal directories.