(name string)
| 597 | type wholeFileFS interface { |
| 598 | Chmod(name string, mode os.FileMode) error |
| 599 | ReadFile(name string) ([]byte, error) |
| 600 | Remove(name string) error |
| 601 | Rename(oldName, newName string) error |
| 602 | // ActualPath returns the real filesystem path for the given absolute |
no outgoing calls