Expand description
Filesystem abstraction layer.
Provides unified APIs that work with both sync and async runtimes.
When the blocking feature is disabled (default), async operations use tokio.
When blocking is enabled, all operations are synchronous.
Functionsยง
- create_
dir_ all - Creates a directory and all parent directories.
- open_
buffered - Opens a file for buffered reading.
- read_
to_ string - Reads a file to string.
- write
- Writes content to a file.