R
Rob
I need to move some files to different folders. How would you do it within
compact framework ? File system object work here ?
Thanks
compact framework ? File system object work here ?
Thanks
You cannot copy from the device to the desktop like this. I've answered
this in your other post of the same question (which is bad form I might
add).
-Chris
Rob said:Chris,
Here is the code I am running All of which is on the handheld.... there is
no copy to or from the Desktop invlolved. (That was an earlier and
different question.)
When I use File Explorer on the handheld I know that the files do exist on
the handheld, yet I get the "File NO Exists" error.
strFilePathOrdersBOD = "\My Device\My
Documents\ZSampleApp\ToHandheld\Orders.xml"
strFIlePathOrdersLive = "\My Device\Program Files\ZTest1\Orders.xml"
If File.Exists(strFilePathOrdersBOD) Then
MsgBox(strFilePathOrdersBOD & " - File Exists")
Else
MsgBox(strFilePathOrdersBOD & " - File NO Exists")
End If
If File.Exists(strFIlePathOrdersLive) Then
MsgBox(strFIlePathOrdersLive & " - File Exists")
Else
MsgBox(strFIlePathOrdersLive & " - File NO Exists")
End If