10
1
I have a couple of files that I want to delete. So I select them and then do Move to Trash. However, when I do so I get this message:
Some of the items you are moving are in use by another application. Moving the items can cause problems with the application using them. Are you sure you want to move these items?
[Stop] [Continue]
My problem is that I can't find any applications that are using these files. I also tried to run
lsof | grep <part of filename>
But I couldn't see anything there either. What is going on? How can I find out why the file is "locked"? Is there anything similar to the LockHunter or Unlocker applications on Windows?
Note: I realize that I could probably try to just click continue instead of stop, but I'd like to know first and also learn if there is anything I can do. If I override whatever is holding them and deleting them, I won't have a way to test suggested solutions here :p
Note: For others reading this post; I have discovered that I do not have to use grep at all. I can just do lsof <filename>
. Probably something most people know, but I didn't :p
2Tried
sudo lsof
? – Debilski – 2010-03-02T12:33:10.113Did now, but didn't get anything then either. – Svish – 2010-03-02T13:14:23.807
1Not a solution but Snow Leopard is supposed to have better information about why you can't do things with a file – Peter M – 2010-03-02T15:23:54.087
If we only had Intel... – Svish – 2010-03-02T15:42:24.980