Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/ntfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Finck <colin@reactos.org>2021-06-04 13:22:33 +0300
committerColin Finck <colin@reactos.org>2021-06-04 13:22:33 +0300
commit777cbb028f22c73541f9340f6b94c5dd375f4384 (patch)
tree06ff5f99ba9fabcb76096ecee255ddcf1e40ce92 /src/lib.rs
parentc3a4f05cfe3bf69d683c0c27a3f50f7b9af5a273 (diff)
Add `NtfsIndexAllocation`, iterators for Index Records and Index Entries
This allows iterating through all nodes of an arbitrary index. Tested with a filesystem that has 512 directories in the root. Still lacks functions to traverse an index in-order or find an item efficiently.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b6fed11..0cd1dbe 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -14,8 +14,11 @@ mod attribute_value;
mod boot_sector;
mod error;
mod guid;
+mod index_entry;
+mod index_record;
mod ntfs;
mod ntfs_file;
+mod record;
mod string;
pub mod structured_values;
mod time;