how to force delete files using the terminal code example
Example 1: terminal remove files starting with
find . -name 'name*' -exec rm {} \;
Example 2: delete a file in cmd windows
del /f filename.type
find . -name 'name*' -exec rm {} \;
del /f filename.type