aboutsummaryrefslogtreecommitdiff
path: root/lib/std/fs/AtomicFile.zig
AgeCommit message (Collapse)Author
2025-07-21std.fs.File: delete writeFileAll and friendsAndrew Kelley
please use File.Writer for these use cases also breaking API changes to std.fs.AtomicFile
2024-03-19extract std.posix from std.osAndrew Kelley
closes #5019
2024-01-01frontend: ignore AccessDenied when writing builtin.zigAndrew Kelley
This issue already existed in master branch, however, the more aggressive caching of builtin.zig in this branch made it happen more often. I added doc comments to AtomicFile to explain when this problem can occur. For the compiler's use case, error.AccessDenied can be simply swallowed because it means the destination file already exists and there is nothing else to do besides proceed with the AtomicFile cleanup. I never solved the mystery of why the log statements weren't printing but those are temporary debugging instruments anyway, and I am already too many yaks deep to whip out another razor. closes #14978
2023-11-22std.fs.File: flatten structAndrew Kelley
2023-11-22std.fs: extract AtomicFile to separate fileAndrew Kelley