|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| disk.file.copy(Source, Target, FailIfExists) |
Parameters
| STRING | Source | Source file.
| | STRING | Target | Target file.
| | BOOL | FailIfExists | Optional. If set to true, the copy will be canceled if the file already exists. |
Return value
| true if succes, false if failed. |
Description
MioScript Sample Code
disk.file.copy(
path.desktop("source.txt"),
path.desktop("target.txt")
) |
|
|
|