| Name | Type | Description |
|---|---|---|
| src |
String
|
|
| Dst |
String
|
|
| Overwrite |
Long
|
If file_folder2 already exists, determines whether to overwrite the existing file (you cannot overwrite existing folders): 0 = rename and overwrite 1 = overwrite fails (default if omitted) |
' statement example DIM x AS STRING DIM y AS STRING x = "C:\work\example1.vp" y = "D:\work\example1.vp" RENAME x, y, 0
' statement example DIM x AS STRING DIM y AS STRING x = "C:\work\example1.cdr" y = "C:\work\example2.cdr" success = RENAME (x, y, 0)