Computer Science, asked by cheanchi, 9 hours ago

write DOS command to delete all the files with extension.BMP​

Answers

Answered by anindyaadhikari13
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