diff --git a/fuseutil/not_implemented_file_system.go b/fuseutil/not_implemented_file_system.go index 7a489d0..46d9dec 100644 --- a/fuseutil/not_implemented_file_system.go +++ b/fuseutil/not_implemented_file_system.go @@ -33,6 +33,12 @@ func (fs *NotImplementedFileSystem) OpenDir( return nil, fuse.ENOSYS } +func (fs *NotImplementedFileSystem) ReadDir( + ctx context.Context, + req *fuse.ReadDirRequest) (*fuse.ReadDirResponse, error) { + return nil, fuse.ENOSYS +} + func (fs *NotImplementedFileSystem) ReleaseHandle( ctx context.Context, req *fuse.ReleaseHandleRequest) (*fuse.ReleaseHandleResponse, error) {