#windows-file #properties #system #attributes #decoding #element

keypropdecode

A library for decoding Windows file system elements attributes constants

10 stable releases

2.0.3 Jan 18, 2024
2.0.1 Jan 17, 2024
1.1.8 Jan 15, 2024
0.1.0 Jan 2, 2024
0.0.0 Dec 20, 2023

#326 in Filesystem

Download history 4/week @ 2023-12-29 60/week @ 2024-01-05 36/week @ 2024-01-12 2/week @ 2024-01-19 11/week @ 2024-02-23 9/week @ 2024-03-01 95/week @ 2024-03-29 19/week @ 2024-04-05

114 downloads per month

MIT license

47KB
1K SLoC

keypropdecode

A library for decoding windows file system element properties.
Since Windows stores these properties as a number and each individual property is stored in a determined bit of that number, decoding it can bloat the code.
This library attemps to solve this. You can use this crate with different purposes:

  1. You can provide an u32, with the From trait, and get back a Props instance with the correspondent properties.
  2. You can provide a PathBuf or a reference to it, with the TryFrom trait, and you won't have to extract the correspondent properties. You can also provide a valid &str.
  3. With the properties correctly set you can get the u32 correpondent to those properties you set. The library will ensure you don't set invalid states
  4. The Display implementation of the struct return a String identical as the one that prints with GetChild-Item in PowerShell, which are the most commonly used.

For reference with all the file system element properties go to the Microsoft File Attribute Constants Documentation.
The implementation of the library uses enums to make invalid states unrepresentable.
It is strongly recommended that if you don't know what a property does, don't change it.

Example

use keypropdecode::Props;
let mut props = Props::default();
props.change_element_type(ArcDir::Archive(ArchiveProps::default()));
assert_eq!(Props::try_from(r"hidden_file_example.txt").unwrap(), props);

No runtime deps