system-extensions 0.0.4

A robust set of extensions for operating system operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**

    Allows the editing of when a file was created, modified, and accessed.
*/
#[cfg(feature="metadata")]
pub mod time;
/**

    Allows the editing of file attribute data.
    This includes setting a file to hidden and read-only.
*/
#[cfg(feature="metadata")]
pub mod attribute;
#[cfg(test)]
pub mod time;
#[cfg(test)]
pub mod attribute;