CopyFileToDevice1
Previous  Next

Copies a file from the desktop to the device.
Syntax: CopyFileToDevice1 (DesktopFile As String, DevicePath As String)

Example:

'Add a RAPIDesktop object named rapi.
Sub App_Start
      Form1.Show
      rapi.New1
      rapi.Connect
End Sub


Sub rapi_Connected
      rapi.CopyFileToDevice1(AppPath & "\1.txt","\My Documents")
End Sub