Does CF have anything comparable to DOS (i.e., Run cmd ?)

  • Thread starter Thread starter Rob
  • Start date Start date
Chris,

I am trying to see the full path of a filename. I can absolutely use
FileExplorer (on the handlheld) and confirm that the files in question DO
exist, even though when I run my program, it reports that the files do not
exist.

str1 ="\My Device\My Documents\Folder1\orders.xml"
str2 = "\My Device\Program Files\Folder2\orders.xml"

In a dos like app I could see the entire path on one line.... to see if
long names were supported or if something else was up.

I am at a loss...

Thanks !
 
Hi,
My Device shouldn't be part of the path name

try
str1 ="My Documents\Folder1\orders.xml"
str2 = "Program Files\Folder2\orders.xml"

Pete
 
Thanks a Million Pete !!

I did have to make one adjustment and add the beginning slash, but it
worked.
 
Back
Top