// This file is part of helpers4.
// Copyright (C) 2025 baxyz
// SPDX-License-Identifier: LGPL-3.0-or-later
//! File-system helpers: safe writes, missing-file-as-`None`, listing and path checks.
//!
//! `write_atomic` and `read_to_string_opt` cover the two things `std::fs` makes awkward, `walk` lists a
//! tree without following links, and `normalize` / `is_within` handle paths lexically (no I/O, so they
//! work for paths that do not exist, and never resolve symbolic links).
pub use is_within;
pub use normalize;
pub use read_to_string_opt;
pub use walk;
pub use write_atomic;