We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92c300 commit 1882278Copy full SHA for 1882278
sftpfs/file.go
@@ -64,9 +64,8 @@ func (f *File) Read(b []byte) (n int, err error) {
64
return f.fd.Read(b)
65
}
66
67
-// TODO
68
func (f *File) ReadAt(b []byte, off int64) (n int, err error) {
69
- return 0, nil
+ return f.fd.ReadAt(b, off)
70
71
72
func (f *File) Readdir(count int) (res []os.FileInfo, err error) {
0 commit comments