(ctx context.Context, volume string, path string, offset int64, buf []byte, verifier *BitrotVerifier)
| 90 | // File operations. |
| 91 | ListDir(ctx context.Context, volume, dirPath string, count int) ([]string, error) |
| 92 | ReadFile(ctx context.Context, volume string, path string, offset int64, buf []byte, verifier *BitrotVerifier) (n int64, err error) |
| 93 | AppendFile(ctx context.Context, volume string, path string, buf []byte) (err error) |
| 94 | CreateFile(ctx context.Context, volume, path string, size int64, reader io.Reader) error |
| 95 | ReadFileStream(ctx context.Context, volume, path string, offset, length int64) (io.ReadCloser, error) |
no outgoing calls