(name string, mode FileMode)
| 30 | // The Filesystem interface abstracts access to the file system. |
| 31 | type Filesystem interface { |
| 32 | Chmod(name string, mode FileMode) error |
| 33 | Lchown(name string, uid, gid string) error // uid/gid as strings; numeric on POSIX, SID on Windows, like in os/user package |
| 34 | Chtimes(name string, atime time.Time, mtime time.Time) error |
| 35 | Create(name string) (File, error) |
no outgoing calls