How can I delete this file and folder?
Unable to delete a single file or folder
#1
Posted 02 August 2012 - 05:51 AM
How can I delete this file and folder?
#2
Posted 02 August 2012 - 07:15 AM
Hi,
Try do delete the file using the Command Prompt.
- click Start->Run->cmd
- change to the drive corresponding to the external drive and to the folder with the file you want to delete
- use the comand dir to list the files names using short names
the short file name will have something like ~1 at the end
- then use the del command to delete the file using the name you find using the dir command
Please post the result.
Try do delete the file using the Command Prompt.
- click Start->Run->cmd
- change to the drive corresponding to the external drive and to the folder with the file you want to delete
cd /d "e:\name of the folder"
- use the comand dir to list the files names using short names
dir /A /X
the short file name will have something like ~1 at the end
- then use the del command to delete the file using the name you find using the dir command
del /A /F filena~1
Please post the result.
#3
Posted 02 August 2012 - 08:58 AM
I'm having difficulty executing your instructions. The folder and file I am trying to delete are on my L (external drive) in a folder named I Tunes Music : Compilations : A Perfect World. After opening Start>Run>cmd and adding L:itunesmusic/compilations/aperfectworld nothing opens. Help
#5
Posted 02 August 2012 - 11:36 AM
My mistake (sorry) File name is L:\iTunes Music\Compilations\A Perfect World\(then two squares, a Capital "H", two Omega signs, two squares, what appears to be a greek "B", a period (.), a square, and an Omega sign.
#6
Posted 02 August 2012 - 11:38 AM
Ok, in that case after opening the command prompt the command you need to write to got to the right folder is:
Then use the dir command like i wrote above.
cd /D "L:\iTunes Music\Compilations\A Perfect World\"
Then use the dir command like i wrote above.
#7
Posted 02 August 2012 - 12:11 PM
After executing "dir/A/X" I am getting a message that says "The parameter is incorrect' and I do not see any short file name.
#11
Posted 02 August 2012 - 12:40 PM
After Perfect World> I have entered "dir /A /X", "dir/A /X" and " dir/A /X" in all cases I get the same message "The parameter is incorrect"
#12
Posted 02 August 2012 - 12:51 PM
Ok, if you write only dir and press enter you got the same error?
Also did you have more files inside the "Perfect World" folder?
Also did you have more files inside the "Perfect World" folder?
#13
Posted 02 August 2012 - 12:59 PM
dir does result in same error message.
The A Perfect World folder has only one folder in it that is the squares and Omega signs previously described. That folder has about files in it some with a single alpha character beside them and some with a square beside them.
The A Perfect World folder has only one folder in it that is the squares and Omega signs previously described. That folder has about files in it some with a single alpha character beside them and some with a square beside them.
#14
Posted 02 August 2012 - 01:02 PM
On the problematic folder try this command to see if it can list the files.
for %f in (*.*) do @echo %~sf

