Delete locked file/folder from command line

6

It is easy to delete a file or folder from a command line or a locked file or folder from a nice GUI tool like Unlocker.

However is there a way to delete locked file/folder from a command line?

Alex

Posted 2011-12-11T22:32:33.237

Reputation: 241

3@Simon: I'm guessing yes, since Unix-like systems allow deletion of open files. – user1686 – 2011-12-12T00:43:59.940

Answers

5

Sysinternals Handle can list all open handles (to files and other objects), as well as close them. Run handle filename to list all matching handles, then handle -c id -p pid to close it. This is basically the same as what Unlocker does.

(Edit: Added forgotten -p option.)

user1686

Posted 2011-12-11T22:32:33.237

Reputation: 283 655

handle is really slow.... – Stephen M -on strike- – 2018-12-10T21:50:21.820

3

I don't know if it's possible to delete a locked file immediately, but BusyDelete will schedule the file for removal after a reboot.

BusyDelete will delete files even if they are busy. The file(s) you specify will be marked for deletion. Then the next time you reboot your system the Operating System will delete the file(s). For example BDEL ATL.DLL will delete the file during the next reboot.

There are quite a few other useful utilities there too.

Randy Orrison

Posted 2011-12-11T22:32:33.237

Reputation: 5 749

Thank you for your reply. However, this is unfortunately, not suitable option as I need a tool like Unlocker, which can do this immediately. – Alex – 2011-12-12T00:09:10.047