A Rusty .DS_Store Parser

Get The Library!

add something like this to your Cargo.toml file:

toml [dependencies] ds_store = "0.1"

Usage

```rust extern crate ds_store;

use std::{io::Read, fs::File}; use ds_store::{DsStore, Record};

fn main() { let args: Vec = std::env::args().collect(); if args.len() != 2 { println!("Incorrect usage! `./binarypath /path/to/.DSStore"); return; }

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

Rust Version

Should be 2015 edition compatible!

License

This code is distributed under the MIT license. Please see the LICENSE.md file for information.

TODO