Can't delete folder in Windows 7

tulsa40

New member
Local time
11:07 AM
Messages
4
I'm trying to delete a folder in Windows 7 and get a perplexing error message: "Could not find this item: This is no longer located in G:\Graphics. Verify the item's location and try again.

I'm using Windows 7; this folder is on an external hard drive. I've emptied the folder (there were items in it); I've scanned that external hard drive for errors. Trying to rename the folder yields the same enigmatic error message. The folder is empty.

How can I delete this folder?
 

My Computer

OS
Windows 7
There may be a Windows 8.3 name in there that's causing the problem. Open up a command prompt, go to the G:\Graphics folder, and do a dir /x. Hopefully the file you are looking for is listed, then you can do a rd with the 8.3 filename.
 

My Computer

Computer Manufacturer/Model Number
Dell XPS 15 L502x
OS
Windows 7 Ultimate x64 SP1
CPU
Core i7-2670QM
Memory
8GB DDR3 PC3-10600
Graphics Card(s)
Intel HD Graphics 3000 + GeForce GT 540M
Screen Resolution
1920x1080
Hard Drives
1TB 5400RPM Seagate
I'm trying to delete a folder in Windows 7 and get a perplexing error message: "Could not find this item: This is no longer located in G:\Graphics. Verify the item's location and try again.

I'm using Windows 7; this folder is on an external hard drive. I've emptied the folder (there were items in it); I've scanned that external hard drive for errors. Trying to rename the folder yields the same enigmatic error message. The folder is empty.

How can I delete this folder?

Reboot and try it again.

What are the properties? how big, who owns it, etc

Ken J++
 

My Computer

Computer Manufacturer/Model Number
HP Pavillion dv-7 1005 Tx
OS
Win 8 Release candidate 8400
CPU
[email protected]
Memory
4 gigs
Graphics Card(s)
Nvidia 9600M
Sound Card
HD built-in
Monitor(s) Displays
17" Wxga
Screen Resolution
1440x900
Cooling
none
Internet Speed
45Mb down 5Mb up
Here is something strange about this folder. I can move a file into it. Sort of. When I move a file into the folder I can't delete, another folder with exactly the same name is created. This second folder is empty and I can delete it.

Once I've deleted the folder that was created when I copied a file, there's that folder remaining with the file in it. If I try to delete the folder, I get that same error message -- can't find the folder.

I can delete the file that's in the folder, but still can't delete the folder.

I'm not able to switch to the G: drive in the command prompt. (Or at least I can't with the CHDIR command.)

Properties shows that the folder size is 0 bytes.

I still can't delete it.
 

My Computer

OS
Windows 7
See if you can delete the folder using KillBox:

Download KillBox

Unzip the folder to your desktop.
Start Killbox.exe
When it is open, enter G:\Graphics\whatevername into the field labeled "Full path of file to delete".
Select the Delete on reboot option.
Then press the button that looks like a red circle with a white X in it.
Your computer will reboot and check to see if the file is gone.

Let us know if this works
 

My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
Bruce ... somewhere in his 40's
OS
Windows 7 Ultimate 32bit SP1
CPU
Intel(R) Core(TM)2 Quad CPU @ 2.40GHz, 2400 MHz
Motherboard
INTEL/D975XBX2
Memory
4 GB
Graphics Card(s)
ATI Radeon HD 2600 Pro
Monitor(s) Displays
Samsung SyncMaster 914v
Screen Resolution
1280 x 1024
Hard Drives
2/500GB each ... ST3500630AS ATA Device.
One is not connected
PSU
Rocketfish 700 W
Case
G.Skill Gigabyte Chassis
Keyboard
Standard PS/2 Keyboard
Mouse
Microsoft PS/2 Mouse
Internet Speed
DSL
Antivirus
Avira Internet Security
Browser
IE 11
Other Info
ATI HDMI Audio
Killbox did not kill that folder, even after selecting the Delete on Reboot option.

The problem, I should mention, with this folder is that when my backup software hits this folder the entire backup process stops. So I definitely need to get rid of it.
 

My Computer

OS
Windows 7
To switch to the G drive, simply type g:

Use the following commands, after opening up a command prompt:

Code:
g:
cd graphics
dir /x

The 8.3 names will be listed in the column immediately before the long filename column. Use the rd command with the 8.3 name. For example:

Code:
rd VIRTUA~1
 

My Computer

Computer Manufacturer/Model Number
Dell XPS 15 L502x
OS
Windows 7 Ultimate x64 SP1
CPU
Core i7-2670QM
Memory
8GB DDR3 PC3-10600
Graphics Card(s)
Intel HD Graphics 3000 + GeForce GT 540M
Screen Resolution
1920x1080
Hard Drives
1TB 5400RPM Seagate
OR IN the Command Prompt.

Code:
G:
rd graphics
 

My Computer

Computer Manufacturer/Model Number
Custom Build
OS
W7 RTM Ultimate x64
CPU
Intel Q8400 @ 2.66GHZ
Motherboard
Gigabyte GA-EG45M-UD2H
Memory
4GB DDR2-800
Graphics Card(s)
Gainward GTS 450 GLH 1GB Edition
Sound Card
Integrated 8 Channel
Monitor(s) Displays
AOC 23.6 Inch Widescreen LCD
Screen Resolution
1920x1080
Hard Drives
Seagate 500GB Internal
Western Digital 1TB Internal

Hitachi 1TB External
PSU
Apevia Java Power 500W
Case
Cooler Master HAF 922 Black
Cooling
Stock Intel CPU Fan
Keyboard
HP SK-2960 Multimedia Keyboard
Mouse
Logitech M350 Wireless Gaming Mouse
Internet Speed
1.5MB
OR IN the Command Prompt.

Code:
G:
rd graphics

In DOS, the rd command will not work if there are files/folders contained within the directory. As there is a subdirectory inside GRAPHICS, the rd GRAPHICS command will fail. To remove a directory that contains other files/directories, the /S switch is required (use the /Q switch in order to not ask if it is ok to delete each folder).
 

My Computer

Computer Manufacturer/Model Number
Dell XPS 15 L502x
OS
Windows 7 Ultimate x64 SP1
CPU
Core i7-2670QM
Memory
8GB DDR3 PC3-10600
Graphics Card(s)
Intel HD Graphics 3000 + GeForce GT 540M
Screen Resolution
1920x1080
Hard Drives
1TB 5400RPM Seagate
To switch to the G drive, simply type g:

Use the following commands, after opening up a command prompt:

Code:
g:
cd graphics
dir /x

The 8.3 names will be listed in the column immediately before the long filename column. Use the rd command with the 8.3 name. For example:

Code:
rd VIRTUA~1

If you receive an error, use the /S switch, which will remove all files and subdirectories, along with the parent directory, as I described in my reply to Uber Philf.

Code:
rd VIRTUA~1 /S
 

My Computer

Computer Manufacturer/Model Number
Dell XPS 15 L502x
OS
Windows 7 Ultimate x64 SP1
CPU
Core i7-2670QM
Memory
8GB DDR3 PC3-10600
Graphics Card(s)
Intel HD Graphics 3000 + GeForce GT 540M
Screen Resolution
1920x1080
Hard Drives
1TB 5400RPM Seagate
OR IN the Command Prompt.

Code:
G:
rd graphics

In DOS, the rd command will not work if there are files/folders contained within the directory. As there is a subdirectory inside GRAPHICS, the rd GRAPHICS command will fail. To remove a directory that contains other files/directories, the /S switch is required (use the /Q switch in order to not ask if it is ok to delete each folder).


Opps, my bad, thanks for the clear-up :o
 

My Computer

Computer Manufacturer/Model Number
Custom Build
OS
W7 RTM Ultimate x64
CPU
Intel Q8400 @ 2.66GHZ
Motherboard
Gigabyte GA-EG45M-UD2H
Memory
4GB DDR2-800
Graphics Card(s)
Gainward GTS 450 GLH 1GB Edition
Sound Card
Integrated 8 Channel
Monitor(s) Displays
AOC 23.6 Inch Widescreen LCD
Screen Resolution
1920x1080
Hard Drives
Seagate 500GB Internal
Western Digital 1TB Internal

Hitachi 1TB External
PSU
Apevia Java Power 500W
Case
Cooler Master HAF 922 Black
Cooling
Stock Intel CPU Fan
Keyboard
HP SK-2960 Multimedia Keyboard
Mouse
Logitech M350 Wireless Gaming Mouse
Internet Speed
1.5MB
^^^^ No problem. It's easy to forget all of the switches when you don't use DOS constantly. I didn't remember until I read your post! ;)
 

My Computer

Computer Manufacturer/Model Number
Dell XPS 15 L502x
OS
Windows 7 Ultimate x64 SP1
CPU
Core i7-2670QM
Memory
8GB DDR3 PC3-10600
Graphics Card(s)
Intel HD Graphics 3000 + GeForce GT 540M
Screen Resolution
1920x1080
Hard Drives
1TB 5400RPM Seagate
That did the trick: I had to use the /S switch because there were files in that folder. (Though files that I couldn't even see in DOS.) And I had to add the /P switch while getting the folder names because there were so many folders.

Thanks everyone. I really (really!) appreciate the help -- I couldn't have done it without your help. Now my back is proceeding smoothly.
 

My Computer

OS
Windows 7
Glad it worked.
 

My Computer

Computer Manufacturer/Model Number
Dell XPS 15 L502x
OS
Windows 7 Ultimate x64 SP1
CPU
Core i7-2670QM
Memory
8GB DDR3 PC3-10600
Graphics Card(s)
Intel HD Graphics 3000 + GeForce GT 540M
Screen Resolution
1920x1080
Hard Drives
1TB 5400RPM Seagate
Fantastic!, good work Kego. :)
 

My Computer

Computer Manufacturer/Model Number
Custom Build
OS
W7 RTM Ultimate x64
CPU
Intel Q8400 @ 2.66GHZ
Motherboard
Gigabyte GA-EG45M-UD2H
Memory
4GB DDR2-800
Graphics Card(s)
Gainward GTS 450 GLH 1GB Edition
Sound Card
Integrated 8 Channel
Monitor(s) Displays
AOC 23.6 Inch Widescreen LCD
Screen Resolution
1920x1080
Hard Drives
Seagate 500GB Internal
Western Digital 1TB Internal

Hitachi 1TB External
PSU
Apevia Java Power 500W
Case
Cooler Master HAF 922 Black
Cooling
Stock Intel CPU Fan
Keyboard
HP SK-2960 Multimedia Keyboard
Mouse
Logitech M350 Wireless Gaming Mouse
Internet Speed
1.5MB
To switch to the G drive, simply type g:

Use the following commands, after opening up a command prompt:

Code:
g:
cd graphics
dir /x
The 8.3 names will be listed in the column immediately before the long filename column. Use the rd command with the 8.3 name. For example:

Code:
rd VIRTUA~1

If you receive an error, use the /S switch, which will remove all files and subdirectories, along with the parent directory, as I described in my reply to Uber Philf.

Code:
rd VIRTUA~1 /S
I registered to these forums only so that i could thank you for this!
I had a folder with 0byte that could not be deleted or moved and it was driving me crazy cuss i tried lots of "solutions" i found on google that didnt work but this did! Thanks again!
 

My Computer

OS
7
thank you all...

Ive been battling with this for a week...

Ive tried: F5, lockhunter, indexing, linux live, cmd del<foldername>...

you guys are like my own personal jesus christ's

"rd <folder> /S" worked!!!!


thanks so much!
 

My Computer

OS
Windows 7 - 64
If Killbox didn't work, try Unlocker which does good for me and is GUI based next time you have a problem that is similar.

UNLOCKER 1.8.9 BY CEDRICK 'NITCH' COLLOMB


Edit: Just read the rules again, is posting this link in this context considered advertising?
 

My Computer

Computer Manufacturer/Model Number
HP Pavilion dv7
OS
Windows 7
CPU
Core i7
Memory
8 GB
Graphics Card(s)
ATI FireGL
Monitor(s) Displays
Secondary is an HP L1940T
Screen Resolution
1680x1050
Hard Drives
160 GB SSD and 500 GB SATA
Keyboard
G11 Logitech
Mouse
G7 Logitech
Internet Speed
Fiber
Other Info
My rig smegging rules!
the above link is unsafe according to my ie8 browswer
 

My Computer

Computer Manufacturer/Model Number
asus
OS
windows 7 prof
CPU
i7 920 quad
Motherboard
asus
Memory
3gb triple memory 1333
Graphics Card(s)
nvidia gts 250 1gb
Sound Card
on board
Monitor(s) Displays
22inch hannsg
Screen Resolution
1680 x1050
Hard Drives
1x1tb 1x 250gb 1x320 ext
PSU
650
Case
wizard
Cooling
3 fans
Keyboard
microsoft laser wireless
Mouse
microsoft laser wireless
Internet Speed
20mb
Other Info
wireless network n netgear 2000
the above link is unsafe according to my ie8 browswer

A lot of sites popup unsafe.

It's on CNET too just as an FYI. That link above is the actual developer site.

My question was not whether it was safe or not, which i would never intentionally post an unsafe link, but whether it's considered advertising in the context by which it was posted.
 

My Computer

Computer Manufacturer/Model Number
HP Pavilion dv7
OS
Windows 7
CPU
Core i7
Memory
8 GB
Graphics Card(s)
ATI FireGL
Monitor(s) Displays
Secondary is an HP L1940T
Screen Resolution
1680x1050
Hard Drives
160 GB SSD and 500 GB SATA
Keyboard
G11 Logitech
Mouse
G7 Logitech
Internet Speed
Fiber
Other Info
My rig smegging rules!
Back
Top