file_operation/
lib.rs

1//! file-operation
2//!
3//! A Rust library providing comprehensive utilities for file operations with both sync/async support.
4//! Includes operations for copy, delete, move, read and write files. Simplifies file handling
5//! in Rust projects with safe and efficient methods for file manipulation and metadata querying.
6
7pub(crate) mod copy;
8pub(crate) mod delete;
9pub(crate) mod file;
10pub(crate) mod r#move;
11pub(crate) mod read;
12pub(crate) mod write;
13
14pub use {copy::*, delete::*, file::*, r#move::*, read::*, write::*};
15
16pub(crate) use std::fmt;