Remove removes a file
(path string)
| 62 | |
| 63 | // Remove removes a file |
| 64 | func (OSFileSystem) Remove(path string) error { |
| 65 | return os.Remove(path) |
| 66 | } |
| 67 | |
| 68 | // RemoveAll removes a file and all its children |
| 69 | func (OSFileSystem) RemoveAll(path string) error { |