Skip to main content

Start cmd in windows and delete all the .mp4 files in a folder

Start cmd in windows and delete all the .mp4 files in a folder.
1.Search for cmd and you will see it like this.



2.Once you click on it,it will appear on its own window.

3.Lets say i have a mix of files in 'Documents' folder and i want to delete all the mp4 files. enter the command  del .\documents\*.mp4  ,use the full path if you are not sure from where you are executing your cmd.see bellow.


Comments

Popular posts from this blog

Zavigne

How to get your computer's information like the IP address,RAM,HDD MEMORY e.t.c

Ever been called by a technician and require your IP address or your system version 32bit,64bit etc and wondered how to get this type of information about your computer,well this is how you would get it.     1.Start cmd.exe and type systeminfo the press 'enter' and you will get all the info bout your     hardware,software etc

Simple loop in cmd

Ever wondered how to make a loop in cmd  1.start cmd.exe 2.Simple type for /l  %i in (1,1,10) do echo %i