Can't remove file [duplicate]

I have a file with this name "Registering wrong app ", there are a few spaces in the file name, now I can't delete it, it won't even let me change file name, I also tried to delete it from my Java program, it won't let me either, how to delete it?

When deleting it from Explorer, I got this:

Could not find this item
This is no longer located in C:\My_Dir\.
Verify the item's location and try again.

Registering wrong app
Type: File
Siz: 0 bytes

The strange thing is, this file is invisible to the system, it's 0 in size and has space in its name.


Solution 1:

You can do it like this:

del /F "\\?\C:\My_Dir\Registering*wrong*app*"

This will match any amount of characters between and after the words, and also works on wrong files.

If you don't have other files that start with Registering, you might as well try:

del /F "\\?\C:\My_Dir\Registering*"

If the file is undeletable, use Process Explorer and search for the handle and kill the owning process.

Find --> Find Handle/DLL (CTRL+F) --> Type in Registering --> Kill the matching processes.

Solution 2:

Open a command prompt, and change to the My_Dir directory

cd \My_Dir

Get the short (8.3) file name for the file.

dir /a /x /p

You should see something like

02/13/2011  07:25 PM             1,010 REGIST~1     Registering Wrong App

The REGIST~1 is the short file name. Try the del command with that name.

del REGIST~1

Solution 3:

Try putting the filename in quotes, but replacing the spaces with question marks, like this:

del "registering?wrong?app"

That should delete the file if the spaces aren't really spaces, but nulls or some other invisible character.

Solution 4:

Spaces shouldn't matter if you are trying to delete the file from Explorer. If you are trying to delete from the command line simply put the file name in quotes like this del "Registering wrong app ".

If this does not work you have something else holding you up other than spaces in the file name... like a process that is "locking" the file, thus preventing deletion.

Solution 5:

Delete dirs or files with a space in it:

dir /a /x/ /p

"files or dirs with space"

c:\DIR1WITHSPACE~1
c:\DIR2WITHSPACE~2

ren DIRWITHSPACE~1 TEST

del test

"Job done...."