(_ context.Context, path string)
| 177 | } |
| 178 | |
| 179 | func (w *webdavFS) RemoveAll(_ context.Context, path string) error { |
| 180 | return errors.Errorf("can't remove %q: read-only filesystem", path) |
| 181 | } |
| 182 | |
| 183 | func (w *webdavFS) Rename(_ context.Context, oldPath, newPath string) error { |
| 184 | return errors.Errorf("can't rename %q to %q: read-only filesystem", oldPath, newPath) |