Modules§
- What to do when encountering a directory?
- Wrapper types for the values returned from
File
s. - Filtering and sorting the list of files before displaying them.
Structs§
- A Dir provides a cached list of the file paths in a directory that’s being listed.
- A File is a wrapper around one of Rust’s
PathBuf
values, along with associated data about the file.
Enums§
- Usually files in Unix use a leading dot to be hidden or visible, but two entries in particular are “extra-hidden”:
.
and..
, which only become visible after an extra-a
option. - The result of following a symlink.