Removes all exe files in the current directory tree. Useful to clear virus from flash drives.
find . -name "*.exe" -delete
Byte sized tech know-how.
Removes all exe files in the current directory tree. Useful to clear virus from flash drives.
find . -name "*.exe" -delete
Copyright © 2024 Txt
hi ,
this command not working properly, i need to delete all the .exe file bcz my makefile only delete object file……
Are you using this in Windows? This command is for linux only.
In windows try something like ‘del *.exe’
Hi,
Use this for windows: del *.exe /P /F /S
This command will delete all exes in sub directories and force deletion of read-only exes
hi,
i can’t delete .exe file
If files are locked by other processed then I am using http://www.unlockertool.com to delete locked files.
It just closes the process that is using the file and that’s all