| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
sys-utime (See section 6.21.3.4 File stats).
:error
:supersede
src.
:backup
#f
#f when dst exists.
Copy-file returns #t after completion.
If if-exists is :backup, the keyword argument backup-suffix
specifies the suffix attached to the dst to be renamed.
The default value is ".orig".
By default, copy-file starts copying to dst directly.
However, if the keyword argument safe is a true value,
it copies the file to a temporary file in the same directory of dst,
then renames it to dst when copy is completed.
If copy is interrupted for some reason, the filesystem is "rolled back"
properly.
If the keyword argument keep-timestamp is true, copy-file
sets the destination's timestamp to the same as the source's timestamp
after copying.
:error
:supersede
src.
:backup
#f
#f when dst exists.
Move-file returns #t after completion.
If if-exists is :backup, the keyword argument backup-suffix
specifies the suffix attached to the dst to be renamed.
The default value is ".orig".
The file src and dst can be on the different filesystem.
In such a case, move-file first copies src to the
temporary file on the same directory as dst, then renames
it to dst, then removes src.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |