I have need to regularly search a large and changing folder for specific files in sub folders.
Ex: "C:some_foldera_file_value1_value2_some_more_stuff.zipsomething_value1_value2_something.pdf"
I can't seem to grasp the concept of how to burrow down using the nested for loop method i have found before.
This is what i have right now:
set J=1234
set P=alpha
for d/ %%D in (...Test_Folder*%P%_*) do for %%F in (%%~fD%J%*.zipsomethingstatic_*.pdf) do echo %%~fF
Can someone tell me what how to correctly resolve the wildcard issue in the file path?