nicholasbishop / ext4-view-rs

Rust library for reading ext2/ext4 filesystems
https://crates.io/crates/ext4-view
Apache License 2.0
8 stars 2 forks source link

dir_htree: Add get_dir_entry_via_htree #156

Closed nicholasbishop closed 3 months ago

nicholasbishop commented 3 months ago

For large directories, this allows much quicker lookup of a name than iterating over all the entries one by one.

This is the actual interface provided by the dir_htree module; once this is merged we can start calling it from get_dir_entry_inode_by_name.