Expand description
Atomically install a regular file or a symlink to destination, can be either noclobber (fail if destination already exists) or replacing it atomically if it exists.
Functionsยง
- atomic_
install - Atomically install a file, this atomically replace
dst
if it exists. - atomic_
install_ noclobber - Install a file, this fails if the
dst
already exists. - atomic_
symlink_ file - Atomically create a symlink at
link
todest
, this atomically replacelink
if it already exists. - atomic_
symlink_ file_ noclobber - Create a symlink at
link
todest
, this fails if thelink
already exists.