The move_file
method moves a file.
move_file( src, dest [, overwrite] )
Argument | Description |
---|---|
src
|
(string) The source file. |
dest
|
(string) The destination file. |
overwrite
|
(boolean) A boolean that specifies whether to move the file if the destination file already exists. If this argument is false , and the destination file already exists, the move operation fails. The default is true , which means that the destination file is overwritten. |
(Boolean). Returns true
to indicate success, false
otherwise.
|