How do i delete all music files on my hard drive at once?
First, let’s assume that all your music files are on the C: drive. Now, let’s assume that all your music files have a file extension of .mp3 . The simplest way to accomplish what you want to do is as follows: 1. Using Windows, open up a command prompt window by going to Start, Programs, Accessories, and then click on the Command Prompt choice. 2. Within that window you should see a cursor blinking. 3. Type in: cd \ (and hit enter) 4. Next type in: del /s *.mp3 (and hit enter) Your command will cause Windows to delete any .mp3 files in the root directory of C: and any sub-folders that branch off of the root directory. That will take care of all the .mp3 files you have. Just be sure to type in the commands exactly as shown above, so that the slash and backslash are correct, as are the spaces in between the characters. Good luck.