RemoveAll removes a file and all its children
(path string)
| 67 | |
| 68 | // RemoveAll removes a file and all its children |
| 69 | func (OSFileSystem) RemoveAll(path string) error { |
| 70 | return os.RemoveAll(path) |
| 71 | } |
| 72 | |
| 73 | // Stat tries gets file info for t |
| 74 | func (OSFileSystem) Stat(path string) (os.FileInfo, error) { |