rskit-fs 0.1.0-alpha.2

Local filesystem primitives for paths, files, directories, temp files, and atomic writes
Documentation
1
2
3
4
5
6
7
8
9
10
//! Synchronous filesystem operations.
//!
//! These APIs are `std::fs`-backed and may block the current thread.

/// Sync directory helpers.
pub mod dir;
/// Sync file helpers.
pub mod file;
/// Sync file tree helpers.
pub mod tree;