-4

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

2 Answers2

1

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

v01d
  • 186
1

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)

xanatos
  • 123