#file #utility #disk

safe-write

A safe file writing utility

2 releases

0.1.1 Dec 12, 2024
0.1.0 Dec 12, 2024

#1070 in Filesystem

Download history 296/week @ 2024-12-10 65/week @ 2024-12-17 27/week @ 2024-12-24 29/week @ 2025-01-07 42/week @ 2025-01-14 9/week @ 2025-01-21 39/week @ 2025-02-04 19/week @ 2025-02-11 19/week @ 2025-02-18 46/week @ 2025-02-25 37/week @ 2025-03-04 31/week @ 2025-03-11 29/week @ 2025-03-18 15/week @ 2025-03-25

119 downloads per month

MIT license

5KB
64 lines

A crate for safely writing files using an atomic write pattern.

This crate implements a safe file writing strategy that helps prevent file corruption in case of system crashes or power failures. It follows these steps:

  1. Creates parent directories if they don't exist
  2. Writes content to a temporary file
  3. Ensures the content is fully written to disk
  4. Atomically renames the temporary file to the target path

Examples

use safe_write::safe_write;

let content = b"Hello, World!";
safe_write("example.txt", content).expect("Failed to write file");

Platform-specific behavior

On Windows, if the target file exists, it will be explicitly removed before the rename operation since Windows doesn't support atomic file replacement.

Dependencies

~84KB