atomic-write: Atomically write to a file
Atomically write to a file on POSIX-compliant systems while preserving permissions.
On most Unix systems, mv
is an atomic operation. This makes it simple to write
to a file atomically just by using the mv operation. However, this will
destroy the permissions on the original file. This library does the following
to preserve permissions while atomically writing to a file:
If an original file exists, take those permissions and apply them to the temp file before
mv
ing the file into place.If the original file does not exist, create a following with default permissions (based on the currently-active umask).
This way, when the file is mv
'ed into place, the permissions will be the ones
held by the original file.
This library is based on similar implementations found in common libraries in Ruby and Python:
To use `atomic-write`, import the module corresponding to the type you wish to write atomically, e.g., to write a (strict) ByteString atomically:
import System.AtomicWrite.Writer.ByteString
Then you can use the atomicWriteFile function that accepts a FilePath
and a
ByteString
, e.g.:
atomicWriteFile myFilePath myByteString
Modules
[Index] [Quick Jump]
Downloads
- atomic-write-0.2.1.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
Versions [RSS] | 0.1.0.0, 0.1.0.1, 0.2.0.0, 0.2.0.1, 0.2.0.2, 0.2.0.3, 0.2.0.4, 0.2.0.5, 0.2.0.6, 0.2.0.7, 0.2.1.0 |
---|---|
Dependencies | base (>=4.5 && <5.0), bytestring (>=0.10.4 && <0.13.0), directory (>=1.3 && <1.4), filepath (>=1.4 && <1.5), temporary (>=1.3 && <1.4), text (>=1.2 && <3.0), unix-compat (>=0.5 && <1.0) [details] |
Tested with | ghc ==8.4.3, ghc ==8.10.7, ghc ==9.4.7 |
License | MIT |
Copyright | 2015-2019 Stack Builders Inc. |
Author | Justin Leitgeb |
Maintainer | support@stackbuilders.com |
Category | System |
Home page | https://github.com/stackbuilders/atomic-write |
Bug tracker | https://github.com/stackbuilders/atomic-write/issues |
Source repo | head: git clone git@github.com:stackbuilders/atomic-write.git |
Uploaded | by amejia at 2024-10-01T13:22:19Z |
Distributions | Arch:0.2.1.0, Debian:0.2.0.7, Fedora:0.2.0.7, LTSHaskell:0.2.1.0, NixOS:0.2.0.7, Stackage:0.2.1.0 |
Reverse Dependencies | 7 direct, 59 indirect [details] |
Downloads | 15506 total (157 in the last 30 days) |
Rating | 2.0 (votes: 1) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2024-10-01 [all 1 reports] |