Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
793 views
in Technique[技术] by (71.8m points)

directory - How do I recursively list all files of type *.mp3 in a Windows .bat file?

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:la.exe  %%x !di!
)
question from:https://stackoverflow.com/questions/2951063/how-do-i-recursively-list-all-files-of-type-mp3-in-a-windows-bat-file

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use the command DIR:

dir /s/b *.mp3

The above command will search the current path and all of its children. To get more information on how to use this command, open a command window and type DIR /?.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...