system_extensions/metadata/mod.rs
1/**
2 Allows the editing of when a file was created, modified, and accessed.
3*/
4#[cfg(feature="metadata")]
5pub mod time;
6/**
7 Allows the editing of file attribute data.
8 This includes setting a file to hidden and read-only.
9*/
10#[cfg(feature="metadata")]
11pub mod attribute;
12#[cfg(test)]
13pub mod time;
14#[cfg(test)]
15pub mod attribute;