write DOS command to delete all the files with extension.BMP
Answers
Answered by
3
Answer.
Assuming that the files are present in specific directory, the DOS command to delete all the files with extension BMP is -
> Del *.bmp
Explanation.
- The del command is use to delete file.
- Here, I wrote *.bmp - This implies that all the file with extension bmp will be deleted.
- So, the problem is solved!
See attachment for output.
Attachments:
Similar questions