How can we Delete a folder in windows 7 which shows "path does not exist" message when delete it? please give a solution..

link|improve this question
Language you are using? – xanatos Oct 18 '11 at 8:32
thanx.i'm a newer to this site... – Akhil Oct 18 '11 at 8:57
Here are a number of solutions to delete problems: superuser.com/questions/229563/… – glenneroo Oct 18 '11 at 11:11
A restart of the system can sometimes cure this error. – Moab Oct 18 '11 at 14:54
feedback

migrated from stackoverflow.com Oct 18 '11 at 9:12

This question came from our site for professional and enthusiast programmers.

closed as not a real question by random Nov 11 '11 at 14:05

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

You can test this program if you see the folder in explorer. It works for all kinds of situations of locked files and folders.

link|improve this answer
feedback

I'll say you forgot to escape the \ in your language. So for example in C, C++ and C# this "C:\Windows" is wrong. This "C:\\Windows" is right (and in C# @"C:\Windows" is right too)

link|improve this answer
feedback