0

I have accidentally created a folder in Windows called "..." (the typescript compiler generated it because of a wrong configuration) and now I cannot remove this folder.

I have tried removing the folder via the explorer (the explorer crashed) and also via command line (del/rmdir). A restart didn't help either.

How can I remove this folder?

2 Answers2

0

I always use IObit Unlocker tool to unlock and delete some file or folder. It is easier. You could use it to delete it. enter image description here

daidai
  • 377
  • 1
  • 4
0

Open Command Prompt and type

RD ...\

Don't miss the last backslash, it's critical. Otherwise CMD will only complain A subdirectory or file ...... already exists.

You can also create it again:

MD ...\
iBug
  • 11,645