Answers for "delete file with cmd"

13

delete a file in cmd windows

del /f filename.type
Posted by: Guest on June-09-2020
3

how to remove a file in command line

del filename
Posted by: Guest on November-16-2020
2

delete command to delete a file in cmd

del filename
Posted by: Guest on October-01-2020
1

remove file via command line

del filename  -- removes filename
Posted by: Guest on May-05-2020
0

delete file with cmd

Note** The deleted file will not be store in the recycle bin
del /Q *filename.extension*  --This will delete only specific file in a current dir

del /Q *.txt*  --This will delete all file with .txt 

del /Q *.*  --This will delete all file, except folder
Posted by: Guest on September-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language