Hi Tim, Create a batch file in Notepad or another text editor. You could call it playlist.bat
If, for example, you want the playlist to include all MP3 files on your C: drive, type or copy the following to the file. dir/s/b "c:\*.mp3">c:\playlist.m3u When you run the batch file, which you can do by locating it with Windows Explorer and pressing enter on it, the paths and filenames of all MP3 files on your C: drive will be written to c:\playlist.m3u. You can then open playlist.m3u in your preferred media player. If you wish to add, delete or re-order files, you can do this in Notepad or another text editor. Say then you only wanted MP3 files on your C: drive in the folders Pop Music and Country Music including sub-folders, you could modify the code as follows: dir/s/b "c:\Pop Music\*.mp3">c:\playlist.m3u dir/s/b "c:\Country Music\*.mp3">>c:\playlist.m3u Note that the second line has two greater than signs so that it is appended to the file rather than over-writing it. I hope this helps. Thanks, Barry Chapman -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Tim Grady Sent: Thursday, 21 February 2019 2:10 AM To: [email protected] Subject: Re: [all-audio] playlist maker Thanks. It has been so long since I did that I forgot how. Could you remind me, barry? Alternatively, you can use the dir command line function in Windows to create a list of files which you can save to a .m3u file. -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#1981): https://groups.io/g/all-audio/message/1981 Mute This Topic: https://groups.io/mt/29895638/21656 Group Owner: [email protected] Unsubscribe: https://groups.io/g/all-audio/leave/1074140/405281159/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
