Make a playlist of mp3's in a folder, and play them
-
Notice how you can chain multiple commands in one command line with &'s:
& cd "%USERPROFILE%\Music" & dir /s /b *.mp3 > playlist.m3u & start playlist.m3u
The command does the following:
- Changes to the drive in case your default working folder is on a drive other than
- Changes directory to the Music folder in your profile folder
- Creates a playlist file of all of the .mp3 files in your Music folder, including subfolders
- Launches the playlist using your default music player