hello i want to recursively list the absolute path to all files that end with mp3 from a given directory which should be given as relative directory.
i would then like to strip also the directory from the file and i have read that variables which are in a for-scope must be enclosed in !s. is that right?
my current code looks like this:
for /r %%x in (*.mp3) do (
set di=%%x
echo directory !di!
C:\bla.exe %%x !di!
)
thanks!