11[[nodiscard]] std::vector<std::byte>
readFileBuffer(
const std::filesystem::path& filepath, std::size_t startOffset = 0);
13[[nodiscard]] std::string
readFileText(
const std::filesystem::path& filepath, std::size_t startOffset = 0);
15bool writeFileBuffer(
const std::filesystem::path& filepath, std::span<const std::byte> buffer);
17bool writeFileText(
const std::filesystem::path& filepath, std::string_view text);