Rm removes a file or directory. If recursive is true, remove contents too. If force is true, do not return an error when the path does not exist.
(path string, recursive bool, force bool)
| 44 | // Rm removes a file or directory. If recursive is true, remove contents too. |
| 45 | // If force is true, do not return an error when the path does not exist. |
| 46 | Remove(path string, recursive bool, force bool) error |
| 47 | // Rename moves/renames a file or directory. |
| 48 | Rename(src string, dest string) error |
| 49 | } |
no outgoing calls