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. Here is what I have but it doesn’t work when the files/directory path have a space in them. How do I get around these spaces?
for /f %%a in ('dir /B /S *.resx') do echo "%%a"
You know that
forcan also run recursively over directories?Much easier than fiddling with delimiters and saves you from running
dir.