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
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.