Displaying 1 result from an estimated 1 matches for "pathnamen".
Did you mean:
pathname
2011 Mar 02
1
file.rename(): Guaranteed to be complete or not at all?
Hi,
assume I have an existing file 'pathname' and I want to rename it to
'pathnameN' (which does not exist). I use:
res <- file.rename(pathname, pathnameN);
Is it guaranteed that:
(1) if res == TRUE, the file now have name 'pathnameN' and there is no
file with name 'pathname'?
(2) if res == FALSE, nothing has changed?
or could it theoretically also be t...