|
Re: outwitting marco v
| quote: | Originally posted by extepan
i thought the command c:\ del *.mp3 doesnt work
i think it should be del c:\*.mp3 ?????? |
Assume that you're in dos, you see the dos-prompt : 'c:\>' ;
if you type 'del *.mp3', the command line looks like 'c:\>del *.mp3'. Hitting return would then delete all the .mp3-files in the root of your c-drive (using the '/s'-option would delete all mp3s in all subfolders of c).
|