How to delete a file that contains spaces in the file name?
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.
windows-7
add a comment |
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.
windows-7
What message do you get when you try to delete it from Explorer?
– Stephen Jennings
Feb 13 '11 at 23:40
add a comment |
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.
windows-7
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.
windows-7
windows-7
edited May 10 '17 at 14:25
djsmiley2k
5,21612336
5,21612336
asked Feb 13 '11 at 23:30
FrankFrank
2461413
2461413
What message do you get when you try to delete it from Explorer?
– Stephen Jennings
Feb 13 '11 at 23:40
add a comment |
What message do you get when you try to delete it from Explorer?
– Stephen Jennings
Feb 13 '11 at 23:40
What message do you get when you try to delete it from Explorer?
– Stephen Jennings
Feb 13 '11 at 23:40
What message do you get when you try to delete it from Explorer?
– Stephen Jennings
Feb 13 '11 at 23:40
add a comment |
6 Answers
6
active
oldest
votes
You can do it like this:
del /F "\?C:My_DirRegistering*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_DirRegistering*"
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.
instead of Process Explorer,use "unlocker" (ccollomb.free.fr)
– Alex Angelico
Feb 14 '11 at 1:22
8
instead of unlocker, use "Process Explorer" (Microsoft Windows Sysinternals), safe and useful ;-)
– Tom Wijsman
Feb 14 '11 at 2:00
1
Man, this answer takes me back to the DOS 3.1 days. Can always "drop to DOS" (now a command box). Thanks for the effective nostalgia.
– Mike
Feb 14 '11 at 4:30
add a comment |
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
3
This answer (with short names) is wonderful and much simpler than the above solutions with additional programmes! I don't know why it wasn't accepted. Anyway, it worked for me (do delete a folder with the trailing space in name, created by Dropbox probably), thanks man!
– texnic
Jun 17 '12 at 15:19
2
You're welcome. There are many reasons why one answer gets accepted over another. Part of the beauty of Stack Exchange is that even the answers that aren't accepted stay up, so people with similar problems can stumble across them later.
– Patrick Seymour
Jun 20 '12 at 0:35
add a comment |
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.
add a comment |
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.
add a comment |
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...."
add a comment |
For those who still could not get this to work (like me). Using the 7zip file explorer to rename the file works. It appears to perform a more low level rename than windows allows.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f245441%2fhow-to-delete-a-file-that-contains-spaces-in-the-file-name%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
6 Answers
6
active
oldest
votes
6 Answers
6
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can do it like this:
del /F "\?C:My_DirRegistering*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_DirRegistering*"
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.
instead of Process Explorer,use "unlocker" (ccollomb.free.fr)
– Alex Angelico
Feb 14 '11 at 1:22
8
instead of unlocker, use "Process Explorer" (Microsoft Windows Sysinternals), safe and useful ;-)
– Tom Wijsman
Feb 14 '11 at 2:00
1
Man, this answer takes me back to the DOS 3.1 days. Can always "drop to DOS" (now a command box). Thanks for the effective nostalgia.
– Mike
Feb 14 '11 at 4:30
add a comment |
You can do it like this:
del /F "\?C:My_DirRegistering*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_DirRegistering*"
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.
instead of Process Explorer,use "unlocker" (ccollomb.free.fr)
– Alex Angelico
Feb 14 '11 at 1:22
8
instead of unlocker, use "Process Explorer" (Microsoft Windows Sysinternals), safe and useful ;-)
– Tom Wijsman
Feb 14 '11 at 2:00
1
Man, this answer takes me back to the DOS 3.1 days. Can always "drop to DOS" (now a command box). Thanks for the effective nostalgia.
– Mike
Feb 14 '11 at 4:30
add a comment |
You can do it like this:
del /F "\?C:My_DirRegistering*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_DirRegistering*"
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.
You can do it like this:
del /F "\?C:My_DirRegistering*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_DirRegistering*"
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.
edited Feb 14 '11 at 2:06
answered Feb 14 '11 at 0:44
Tom WijsmanTom Wijsman
50.4k24164247
50.4k24164247
instead of Process Explorer,use "unlocker" (ccollomb.free.fr)
– Alex Angelico
Feb 14 '11 at 1:22
8
instead of unlocker, use "Process Explorer" (Microsoft Windows Sysinternals), safe and useful ;-)
– Tom Wijsman
Feb 14 '11 at 2:00
1
Man, this answer takes me back to the DOS 3.1 days. Can always "drop to DOS" (now a command box). Thanks for the effective nostalgia.
– Mike
Feb 14 '11 at 4:30
add a comment |
instead of Process Explorer,use "unlocker" (ccollomb.free.fr)
– Alex Angelico
Feb 14 '11 at 1:22
8
instead of unlocker, use "Process Explorer" (Microsoft Windows Sysinternals), safe and useful ;-)
– Tom Wijsman
Feb 14 '11 at 2:00
1
Man, this answer takes me back to the DOS 3.1 days. Can always "drop to DOS" (now a command box). Thanks for the effective nostalgia.
– Mike
Feb 14 '11 at 4:30
instead of Process Explorer,use "unlocker" (ccollomb.free.fr)
– Alex Angelico
Feb 14 '11 at 1:22
instead of Process Explorer,use "unlocker" (ccollomb.free.fr)
– Alex Angelico
Feb 14 '11 at 1:22
8
8
instead of unlocker, use "Process Explorer" (Microsoft Windows Sysinternals), safe and useful ;-)
– Tom Wijsman
Feb 14 '11 at 2:00
instead of unlocker, use "Process Explorer" (Microsoft Windows Sysinternals), safe and useful ;-)
– Tom Wijsman
Feb 14 '11 at 2:00
1
1
Man, this answer takes me back to the DOS 3.1 days. Can always "drop to DOS" (now a command box). Thanks for the effective nostalgia.
– Mike
Feb 14 '11 at 4:30
Man, this answer takes me back to the DOS 3.1 days. Can always "drop to DOS" (now a command box). Thanks for the effective nostalgia.
– Mike
Feb 14 '11 at 4:30
add a comment |
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
3
This answer (with short names) is wonderful and much simpler than the above solutions with additional programmes! I don't know why it wasn't accepted. Anyway, it worked for me (do delete a folder with the trailing space in name, created by Dropbox probably), thanks man!
– texnic
Jun 17 '12 at 15:19
2
You're welcome. There are many reasons why one answer gets accepted over another. Part of the beauty of Stack Exchange is that even the answers that aren't accepted stay up, so people with similar problems can stumble across them later.
– Patrick Seymour
Jun 20 '12 at 0:35
add a comment |
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
3
This answer (with short names) is wonderful and much simpler than the above solutions with additional programmes! I don't know why it wasn't accepted. Anyway, it worked for me (do delete a folder with the trailing space in name, created by Dropbox probably), thanks man!
– texnic
Jun 17 '12 at 15:19
2
You're welcome. There are many reasons why one answer gets accepted over another. Part of the beauty of Stack Exchange is that even the answers that aren't accepted stay up, so people with similar problems can stumble across them later.
– Patrick Seymour
Jun 20 '12 at 0:35
add a comment |
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
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
answered Feb 14 '11 at 0:35
Patrick SeymourPatrick Seymour
7,4022131
7,4022131
3
This answer (with short names) is wonderful and much simpler than the above solutions with additional programmes! I don't know why it wasn't accepted. Anyway, it worked for me (do delete a folder with the trailing space in name, created by Dropbox probably), thanks man!
– texnic
Jun 17 '12 at 15:19
2
You're welcome. There are many reasons why one answer gets accepted over another. Part of the beauty of Stack Exchange is that even the answers that aren't accepted stay up, so people with similar problems can stumble across them later.
– Patrick Seymour
Jun 20 '12 at 0:35
add a comment |
3
This answer (with short names) is wonderful and much simpler than the above solutions with additional programmes! I don't know why it wasn't accepted. Anyway, it worked for me (do delete a folder with the trailing space in name, created by Dropbox probably), thanks man!
– texnic
Jun 17 '12 at 15:19
2
You're welcome. There are many reasons why one answer gets accepted over another. Part of the beauty of Stack Exchange is that even the answers that aren't accepted stay up, so people with similar problems can stumble across them later.
– Patrick Seymour
Jun 20 '12 at 0:35
3
3
This answer (with short names) is wonderful and much simpler than the above solutions with additional programmes! I don't know why it wasn't accepted. Anyway, it worked for me (do delete a folder with the trailing space in name, created by Dropbox probably), thanks man!
– texnic
Jun 17 '12 at 15:19
This answer (with short names) is wonderful and much simpler than the above solutions with additional programmes! I don't know why it wasn't accepted. Anyway, it worked for me (do delete a folder with the trailing space in name, created by Dropbox probably), thanks man!
– texnic
Jun 17 '12 at 15:19
2
2
You're welcome. There are many reasons why one answer gets accepted over another. Part of the beauty of Stack Exchange is that even the answers that aren't accepted stay up, so people with similar problems can stumble across them later.
– Patrick Seymour
Jun 20 '12 at 0:35
You're welcome. There are many reasons why one answer gets accepted over another. Part of the beauty of Stack Exchange is that even the answers that aren't accepted stay up, so people with similar problems can stumble across them later.
– Patrick Seymour
Jun 20 '12 at 0:35
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Feb 14 '11 at 0:34
RogerRoger
1,17731129
1,17731129
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Feb 13 '11 at 23:38
ubiquibaconubiquibacon
6,70222033
6,70222033
add a comment |
add a comment |
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...."
add a comment |
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...."
add a comment |
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...."
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...."
edited Nov 19 '11 at 14:46
slhck
163k47450474
163k47450474
answered Nov 19 '11 at 14:30
BartBart
111
111
add a comment |
add a comment |
For those who still could not get this to work (like me). Using the 7zip file explorer to rename the file works. It appears to perform a more low level rename than windows allows.
add a comment |
For those who still could not get this to work (like me). Using the 7zip file explorer to rename the file works. It appears to perform a more low level rename than windows allows.
add a comment |
For those who still could not get this to work (like me). Using the 7zip file explorer to rename the file works. It appears to perform a more low level rename than windows allows.
For those who still could not get this to work (like me). Using the 7zip file explorer to rename the file works. It appears to perform a more low level rename than windows allows.
answered Jan 26 at 8:03
jamesakadamingojamesakadamingo
1012
1012
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f245441%2fhow-to-delete-a-file-that-contains-spaces-in-the-file-name%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What message do you get when you try to delete it from Explorer?
– Stephen Jennings
Feb 13 '11 at 23:40