ntfs-core 0.7.2

Pure-Rust from-scratch NTFS filesystem reader — MFT, attributes, indexes, data runs, over any Read + Seek source
Documentation
//! USN Journal record parsing.
//!
//! Decodes `USN_RECORD_V2`/`V3`/`V4` structures from raw `$UsnJrnl:$J` data.
//! The `$UsnJrnl` change journal is an NTFS metadata file, so its record format
//! is part of the NTFS reader surface — higher-level extraction (reading the
//! journal off a live volume, carving records from unallocated space) lives in
//! the analyzer/application layers built on top of this.

mod attributes;
pub mod carver;
mod reader;
mod reason;
mod record;

pub use attributes::FileAttributes;
pub use carver::{carve_usn_records, CarvedRecord, CarvingStats};
pub use reader::UsnJournalReader;
pub use reason::UsnReason;
pub use record::{parse_usn_journal, parse_usn_record_v2, parse_usn_record_v3, UsnRecord};