1

I have 50 folders present in one folder.

In that 50 folders, In Each Folder contains 1 mp3 file (some folders contains even more than 1 mp3 file).

I want to copy all mp3 file names into notepad.

How to complete this task in Win 7?

I gone through This question, But it is differ from my post.

1 Answers1

2

Open a command prompt (cmd, possibly by shift right clicking and selecting "Open Command Prompt Here") and run:

dir /B /S *.mp3 > mp3list.txt

This will get you a list (including the full path) of all MP3s in that folder and its sub-folders and save it to the file mp3list.txt in the current folder.

Without the > mp3list.txt the list is going to be displayed in the cmd window. You can copy it by left clicking and marking all the text followed by a right click (Ctrl+C doesn't work here!). After that the text will be in your Clipboard and you can paste it using Ctrl+V.

Seth
  • 9,393