Documentation ¶
Index ¶
- func New(client *sftp.Client) afero.Afero
- type File
- func (f *File) Close() error
- func (f *File) Name() string
- func (f *File) Read(b []byte) (n int, err error)
- func (f *File) ReadAt(b []byte, off int64) (n int, err error)
- func (f *File) Readdir(count int) (res []os.FileInfo, err error)
- func (f *File) Readdirnames(n 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(b []byte) (n int, err error)
- func (f *File) WriteAt(b []byte, off int64) (n int, err error)
- func (f *File) WriteString(s string) (ret int, err error)
- type Fs
- func (s Fs) Chmod(name string, mode os.FileMode) error
- func (s Fs) Chown(name string, uid, gid int) error
- func (s Fs) Chtimes(name string, atime time.Time, mtime time.Time) error
- func (s Fs) Create(name string) (afero.File, error)
- func (s Fs) Lstat(p string) (os.FileInfo, error)
- func (s Fs) Mkdir(name string, perm os.FileMode) error
- func (s Fs) MkdirAll(path string, perm os.FileMode) error
- func (s Fs) Name() string
- func (s Fs) Open(name string) (afero.File, error)
- func (s Fs) OpenFile(name string, flag int, perm os.FileMode) (afero.File, error)
- func (s Fs) Remove(name string) error
- func (s Fs) RemoveAll(path string) error
- func (s Fs) Rename(oldname, newname string) error
- func (s 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 表示一个远程文件
func FileCreate ¶
FileCreate 创建远程文件 参数:
- s: *sftp.Client SFTP客户端
- name: string 文件名
返回值:
- *File 文件对象
- error 可能的错误
func FileOpen ¶
FileOpen 打开远程文件 参数:
- s: *sftp.Client SFTP客户端
- name: string 文件名
返回值:
- *File 文件对象
- error 可能的错误
func (*File) ReadAt ¶
ReadAt 从指定位置读取文件内容 参数:
- b: []byte 读取缓冲区
- off: int64 读取偏移量
返回值:
- n int 读取的字节数
- error 可能的错误
func (*File) Readdir ¶
Readdir 读取目录内容 参数:
- count: int 读取的文件数
返回值:
- res []os.FileInfo 文件信息列表
- error 可能的错误
func (*File) Readdirnames ¶
Readdirnames 读取目录内容并返回文件名列表 参数:
- n: int 读取的文件数
返回值:
- names []string 文件名列表
- error 可能的错误
func (*File) Seek ¶
Seek 设置文件偏移量 参数:
- offset: int64 偏移量
- whence: int 偏移方式
返回值:
- int64 新的偏移量
- error 可能的错误
type Fs ¶
type Fs struct {
// contains filtered or unexported fields
}
Fs 是一个实现了 afero.Fs 接口的文件系统,使用 sftp 包提供的功能。 对于任何方法的详细信息,请参考 sftp 包的文档(github.com/pkg/sftp)。
func (Fs) Chtimes ¶
Chtimes 修改文件访问时间和修改时间 参数:
- name: string 文件名
- atime: time.Time 访问时间
- mtime: time.Time 修改时间
返回值:
- error 可能的错误
func (Fs) OpenFile ¶
OpenFile 调用 SSHFS 连接上的 OpenFile 方法。mode 参数被忽略 因为 github.com/pkg/sftp 实现中忽略了该参数。 参数:
- name: string 文件名
- flag: int 文件打开标志
- perm: os.FileMode 文件权限
返回值:
- afero.File 文件对象
- error 可能的错误
Click to show internal directories.
Click to hide internal directories.