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 file start program with spaces in path
- Batch path with spaces - Best answers
- Space in batch file - Best answers
- Windows 10 iso file download 64-bit - Download - Windows
- Illustrator could partially read this file ✓ - Office Software Forum
- Fstab space in path - Guide
- Kerbal space program free download - Download - Simulation
- Kmspico zip file download - Download - Other
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