I figured out long ago in dealing with long file names/path names with spaces that you can use them by putting " (double-quotes) around them. The problem I'm running into, though, is that it is not working when I try to do something via batch file.
A couple of examples: If I run something in "C:\Program Files" with double-quotes around the full path to the correct EXE, I'll get an error like this:
Another one I run into is this. If I do a simple interpreter command against a file with a long path name (space), I get this:
For what it is appearing, it's not accepting the double-quotes as a full path name. Any thoughts on what I need to do?
----------
Measurement is not management.
A couple of examples: If I run something in "C:\Program Files" with double-quotes around the full path to the correct EXE, I'll get an error like this:
Code:
'C:\Program' is not recognized as an internal or external command, operable program or batch file.
Another one I run into is this. If I do a simple interpreter command against a file with a long path name (space), I get this:
Code:
The filename, directory name, or volume label syntax is incorrect.
For what it is appearing, it's not accepting the double-quotes as a full path name. Any thoughts on what I need to do?
----------
Measurement is not management.