1use typed_path::Utf8TypedPath;
23fn main() {
4// Try to be smart to figure out the path (Unix or Windows) automatically
5let path = Utf8TypedPath::derive(r"/path/to/file.txt");
67for component in path.components() {
8println!("{}", component.as_str());
9 }
10}