fatx 0.1.0

Original Xbox FATX Filesystem Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod datetime;
pub mod dir;
pub mod error;
pub mod fat;
pub mod file;
pub mod fs;
pub mod partition;
pub mod path;

pub use dir::DirectoryEntry;
pub use error::Error;
pub use file::File;
pub use fs::{FatxFsConfig as FatxFsConfig, FatxFs, FatxFsHandle};
pub use partition::{DEFAULT_PARTITION_LAYOUT, PartitionMapEntry};
pub use datetime::DateTime;