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
dstif it exists. - atomic_
install_ noclobber - Install a file, this fails if the
dstalready exists. - atomic_
symlink_ file - Atomically create a symlink at
linktodest, this atomically replacelinkif it already exists. - atomic_
symlink_ file_ noclobber - Create a symlink at
linktodest, this fails if thelinkalready exists.