Remova o arquivo via linha de comando
del filename -- removes filename
Tame Toad
del filename -- removes filename
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
$ rm sample-file.txt