Readdir lists the names of entries in a directory. Return os.ErrNotExist if the directory does not exist.
(path string)
| 38 | // Readdir lists the names of entries in a directory. |
| 39 | // Return os.ErrNotExist if the directory does not exist. |
| 40 | ReadDirectory(path string) ([]string, error) |
| 41 | // ReaddirWithTypes lists entries with type information. |
| 42 | // Return os.ErrNotExist if the directory does not exist. |
| 43 | ReadDirectoryWithTypes(path string) ([]rpc.SessionFSReaddirWithTypesEntry, error) |
no outgoing calls
no test coverage detected