.DS_Store
Parseradd something like this to your Cargo.toml
file:
toml
[dependencies]
ds_store = "0.1"
```rust extern crate ds_store;
use std::{io::Read, fs::File}; use ds_store::{DsStore, Record};
fn main() {
let args: Vec
let mut file = File::open(&args[1]).expect("Could not open file.");
let mut buf: Vec<u8> = vec![];
file.read_to_end(&mut buf).expect("Could not read file to end.");
let store: DsStore = match DsStore::new(&buf) {
Ok(s) => s,
Err(e) => {
println!("Could not construct the DS_Store: {:?}", e);
return;
}
};
let records: &Vec<Record> = store.records();
records.iter().for_each(|r| println!("{:?}", r));
println!("printed {:?} records", records.len());
} ```
This example is replicated in examples/basic.rs
. Call it with $ cargo run --example basic examples/basic.DS_Store
Should be 2015 edition compatible!
This code is distributed under the MIT license. Please see the LICENSE.md file for information.