it is possible to copy files from pocket pc aaplication to desktoppc?

  • Thread starter Thread starter Luminal
  • Start date Start date
L

Luminal

greets

i need to know if is possible to copy files from pocket pc to desktop. I
know that from desktop to pocket pc is possible to copy files using
RAPI. and from pocket pc to desktop? I need to write a mobile
application that copy some files to desktop when user clicks on button.
Is this possible? If so, how? Can one give samples/links/tutorials/help?

TIA

Lum
 
Copy to a shared folder, an FTP server or something like that, otherwise you
have to write a desktop app to receive the files.

-Chris
 
Dim sourcefile As String = (".\itouch\Bestellung.txt")

druck = (\\SERVER\C_LW\test\Bestellung.txt")

' Copy the file.

System.IO.File.Copy(sourcefile, druck)
 
Back
Top