Creates a new copy of a file on the device (the source and the target files are on the
device).
Syntax: CopyFileOnDevice (SourceFile As String, TargetFile As String)
Example:
'Add a RAPIDesktop object named rapi.
Sub App_Start
Form1.Show
rapi.New1
rapi.Connect
End Sub
Sub rapi_Connected
rapi.CopyFileOnDevice("\my documents\1.txt", "\my
documents\2.txt")
End Sub