Quote:
PvK said:
Ok, it's looking to me like Windohs params just won't mix quotes with wildcards...
I tried hard-coding:
"C:\Program Files\dominions3\savedgames\newlords\*.2h"
and the file system method doesn't like that parameter in Windohs. Which means it's not necessarily failing just at the command-line level - it looks to like it's both, which is lame.
|
The problem is not Windows, in a sense, but the catgod.exe itself. Windows command line does not expand wildcards on its own like bash and other shells in Linux does, and has never done so. The catgod.exe has to do that. And as you can see, EvilDave wasn't prepared to have wildcards for paths with spaces in it.
What you could do is to use the "for" command to feed the pretender files to catgod exe, one at a time. See "for /?".