I\'m trying to do some things during the pre-build phase of a visual studio project. Specifically, I\'m trying to execute some commands on all *.resx files within the project.
You know that for can also run recursively over directories?
for
for /r %%x in (*.resx) do echo "%%x"
Much easier than fiddling with delimiters and saves you from running dir.
dir