Collections:
Other Resources:
Use Quotation to Protect Space in File Name
How to Quotation to Protect Space in File Names to be passed as batch file parameters?
✍: FYIcenter.com
If you want pass a file name or path name that has space characters as a single parameter
to a batch file, you need to put the name in a quotation format
(enclosed in a pair of double quotes).
For example, the path name "\Program Files (x86)\Java" has two space characters in it. If you provide it to the batch file with no quotation, the space characters will break the path name into 3 parameters:
C:\fyicenter>Batch-File-Parameters.bat \Program Files (x86)\Java (Batch-File-Parameters.bat) (\Program) (Files) ((x86)\Java) () () (\Program Files (x86)\Java)
But if you provide the path name in quotation format, space characters will be protected, and it will stay as a single parameter:
C:\fyicenter>Batch-File-Parameters.bat "\Program Files (x86)\Java"
(Batch-File-Parameters.bat)
("\Program Files (x86)\Java") () () () ()
("\Program Files (x86)\Java")
⇒ Remove Quotation Marks from Parameters
⇐ Quotations in Batch File Parameters
2021-11-12, ∼3828🔥, 0💬
Popular Posts:
What is the "McClientAnalytics.exe" process on windows 7? Is the "McClientAnalytics.exe" process a v...
Can I remove startup application "UpdaterUI.exe - Networks Associates Common User Interface" to spee...
What is the scheduled task "\Microsoft\Windows\Mobi lePC\HotStart"on my Windows 7 computer? "\Micros...
How to remove msjava.dll - Java Console Extra Tools Menu Item for Internet Explorer (IE) browsers? m...
Where to find tutorials on Internet Explorer (IE) 7. Here is a list of tutorials to answer many freq...