https://github.com/stanislav-tkach/filesystem_time
Set (and get) time in the file metadata.
https://github.com/stanislav-tkach/filesystem_time
filetime
Last synced: 11 months ago
JSON representation
Set (and get) time in the file metadata.
- Host: GitHub
- URL: https://github.com/stanislav-tkach/filesystem_time
- Owner: stanislav-tkach
- License: mit
- Created: 2017-02-02T21:49:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-09T18:02:19.000Z (about 9 years ago)
- Last Synced: 2025-01-30T03:15:13.599Z (over 1 year ago)
- Topics: filetime
- Language: Rust
- Size: 13.7 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# filesystem_time
## Overview
Get/set file time.
## Documentation
TODO: docs.rs.
## Usage
To use this crate, add `filesystem_time` as a dependency to your project's `Cargo.toml`:
```toml
[dependencies]
filesystem_time = "0.1"
```
Or, if you want [Chrono](https://github.com/chronotope/chrono) or
[time](https://github.com/rust-lang-deprecated/time) support,
include the features like this:
```toml
[dependencies]
chrono = { version = "0.1", features = ["chrono", "time"] }
```
## Example
```rust,no_run
// TODO, FIXME.
```
## Testing
Because of optional dependencies testing should be performed as `cargo.exe test --features "chrono time"`.
## License
Licensed under the MIT license (see the `LICENSE` file).