In windows, filename globs like *.xml do not get expanded by the shell. Its up to each script and program to do it. Thanks for nothin' MSFT!
Here is how to do it in a batch file - a simple example, which does the equivalent of a dir command:
@echo OFF
for %%f in (%1) do (
echo %%f
)
Happy coding.
No comments:
Post a Comment