3

I was working on my code and tried to run a migration against a my local database. Migration couldn't be applied but this folder was created: picture-1 picture-2

Soon after, my whole solution couldn't be loaded and I cannot still delete this folder. What do I do? Where did it come from?

I tried the following:

1) Reboot

2) Safe boot

3) Open CMD with administrator rights and run rmdir "'.." but that gives me an error stating that such path doesn't exist

LPChip
  • 66,193
droft1312
  • 145

3 Answers3

1

I got past similar stuff with:

cd \just\above\the\problem\folder

rem dir should show the problem folder name

rmdir /s /q "problem folder"

0

Try to use Unlocker Program.

You can download at :
https://www.softpedia.com/get/System/System-Miscellaneous/Unlocker.shtml#download

After you install the program:
1. Open the program.
2. The Browse File or Folder Window will be shown. Locate this to your undeletable folder. Then click OK.
Browse File or Folder Window

  1. On the action selection, select Delete and press OK.
    enter image description here
-1

The solution is to "cd" into the folder's grandparent and recursively delete the parent folder by running rmdir <folder> /s /q.

droft1312
  • 145