Domanda

I used Izpack to create an installer. The target path the user will choose will be used to replace placeholders in windows .bat files which works fine until the user chooses a path with spaces like c:\Program Files\plapla, how can I solve this problem?

È stato utile?

Soluzione

Put double quotes around the paths that include placeholders in the .bat files

"${THEPATH}\example.txt"

This should then work in all cases, both when the path contains spaces and when it doesn't.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top