We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the example:
file_name.name() fails because it's actually a Result.
file_name.name()
let mut ntfs = Ntfs::new(&mut fs).unwrap(); let root_dir = ntfs.root_directory(&mut fs).unwrap(); let index = root_dir.directory_index(&mut fs).unwrap(); let mut iter = index.entries(); while let Some(entry) = iter.next(&mut fs) { let entry = entry.unwrap(); let file_name = entry.key().unwrap(); println!("{}", file_name.name()); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the example:
file_name.name()
fails because it's actually a Result.The text was updated successfully, but these errors were encountered: