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
AgeCommit message (Collapse)Author
2022-01-14Apply suggestions from clippy.Colin Finck
2021-12-15Relicense everything as MIT OR Apache-2.0 to enable a broader usage.Colin Finck
2021-12-15Add the missing documentation and some final polishing.Colin Finck
2021-10-15Fix ntfs-shell `get` command for a given $DATA stream.Colin Finck
2021-10-03`NtfsValue` -> `NtfsAttributeValue` and `Slice` -> `Resident`.Colin Finck
Turns out that we won't use this enum for anything else than attribute values, and `Slice` always corresponds to a resident attribute value, so reflect that in the naming. Index keys still use slices without this enum.
2021-10-03Make `NtfsFile::name` useful by matching on namespace and parent.Colin Finck
An NTFS file often has more than one FileName attribute and the caller is likely interested in a specific one. ntfs-shell is changed accordingly to prefer the long filenames.
2021-10-03Add ntfs-shell, an example app to demonstrate all features of the crate.Colin Finck
ntfs-shell is a command-line shell to navigate through an NTFS filesystem. It works read-only on image files, loopback devices, and raw partitions. Very useful for debugging the crate, examining the structure of an NTFS filesystem, and extracting data from it.