1.

Solve : Drag and drop directory on batch file to process files and in subdirectorys?

Answer»

I am trying to write a batch FILE to change ID3 info in MP3 files. I would like to DRAG and drop directory on batch file to process files and in sub-directorys. How would I code the drag and drop part?Code: [Select]@echo off

:loop
for /f "tokens=*" %%a in ('dir/b/s "%~1\*.mp3"') do (
echo %%a
)
if not %2.==. shift & GOTO:loop
pause

support multiple directory drag&dropPerfect! THANK you!



Discussion

No Comment Found