(_ context.Context, u *URI)
| 61 | } |
| 62 | |
| 63 | func (f *FileSystem) Delete(_ context.Context, u *URI) error { |
| 64 | return fileErr(os.Remove(u.Filepath())) |
| 65 | } |
| 66 | |
| 67 | func (f *FileSystem) DeleteByPrefix(_ context.Context, u *URI) error { |
| 68 | return os.RemoveAll(u.Filepath()) |
no test coverage detected