Open a file with spaces from batch file?
Solved/Closed
Branflakes91093
Posts
1
Registration date
Saturday July 26, 2008
Status
Member
Last seen
July 27, 2008
-
Jul 27, 2008 at 02:46 PM
vongsi - Oct 30, 2017 at 12:22 AM
vongsi - Oct 30, 2017 at 12:22 AM
Related:
- Batch path with spaces
- Bat file path with spaces - Best answers
- Batch file start program with spaces in path - Best answers
- Fstab path with spaces - Guide
- Why does my word document have dots instead of spaces - Guide
- Insert file path in excel - Guide
- How to change download path in opera gx - Guide
- Batch rotate images - Guide
4 responses
Hi Korra,
the problem with quotes appears for the follwing reason:
syntax of START
START ["title"] [path]
It treats the string in quotes as a title of the new cmd window. So, you may do the following:
START "" "path"
First quotes will be treated as a title and second will be treated as a path.
Hope this helps.
the problem with quotes appears for the follwing reason:
syntax of START
START ["title"] [path]
It treats the string in quotes as a title of the new cmd window. So, you may do the following:
START "" "path"
First quotes will be treated as a title and second will be treated as a path.
Hope this helps.
Jun 7, 2010 at 11:53 PM
It completely solved the problem I was facing in which a cmd window pops up instead of the desired application
Jun 18, 2010 at 10:11 PM