Stat returns file info for the given path.
(path string)
| 29 | type FileSystem interface { |
| 30 | // Stat returns file info for the given path. |
| 31 | Stat(path string) (fs.FileInfo, error) |
| 32 | // Exists reports whether the path exists. |
| 33 | Exists(path string) (bool, error) |
| 34 | // Open opens a file for reading (e.g. directory listing via Readdir). |
no outgoing calls