1
2
3
4
5
//! Filesystem manipulation operations.

pub use axfs::api::{canonicalize, metadata, read, read_to_string, remove_file, write};
pub use axfs::api::{create_dir, create_dir_all, read_dir, remove_dir};
pub use axfs::api::{DirEntry, File, FileType, Metadata, OpenOptions, Permissions, ReadDir};