(oldname string, newname string)
| 27 | type OSInterface interface { |
| 28 | MkdirAll(path string, perm os.FileMode) error |
| 29 | Symlink(oldname string, newname string) error |
| 30 | Stat(path string) (os.FileInfo, error) |
| 31 | Remove(path string) error |
| 32 | RemoveAll(path string) error |