Search code examples
windowsbatch-filequotesscripting

Dealing with quotes in Windows batch scripts


In a Windows batch file, when you do the following:

set myvar="c:\my music & videos"

the variable myvar is stored with the quotes included. Honestly I find that very stupid. The quotes are just to tell where the string begins and ends, not to be stored as part of the value itself.
How can I prevent this from happening?

Thanks.


Solution

  • set "myvar=c:\my music & videos"
    

    Notice the quotes start before myvar. It's actually that simple. Side note: myvar can't be echoed afterwards unless it's wrapped in quotes because & will be read as a command separator, but it'll still work as a path.

    http://ss64.com/nt/set.html under "Variable names can include Spaces"