What the message means
Finder asks the disk, or the file server, to delete, move, or copy the item. The error behind this message is a “busy” result from that request.
Many guides say it means an app has the file open. We tested that on a Mac running macOS 26. Finder moved and copied files that other programs had open, on the Mac’s own disk and on external drive formats. So an open file alone is not the whole story.
The item is on a network share or NAS
The item is on a file server or NAS box, reached through Finder’s Network section or a server address.
Macs usually reach these servers with a file-sharing method called SMB. The rules for SMB let a server refuse a file when another open copy of it blocks sharing. That other copy can be on a different computer, which this Mac cannot see.
macOS turns that refusal into a “busy” error on this Mac. Apple’s published source code for the Mac’s SMB connection shows this step.
There is also a reported case with no obvious holder. In October 2025, one TrueNAS owner described it on three Macs. A folder created from one user’s Mac could not be deleted from another user’s Mac. Changing the server’s locking settings did not help, and the same thing happened on a Synology server. No cause was confirmed.
Fixask whether anyone else has the file open, or check the server’s own list of open files. If nobody does, eject the share in Finder, reconnect, and try once more.
The item is on this Mac or an external drive
The item is on the Mac’s own disk, or on a USB or Thunderbolt drive.
We found no documented cause for a lasting refusal on a Mac’s own disk. The steps below are cheap and do not change the file.
Fixwait a few seconds and retry. If it still fails, quit the apps that used the item and retry. If it still fails, restart the Mac, which closes every program.
To see which programs have files open on an external drive, use lsof, a Terminal command that lists open files. Give it the drive’s folder under /Volumes.
% sudo lsof /Volumes/MyDriveReplace MyDrive with the drive’s name. sudo runs the command as an administrator, so it asks for your Mac password; it only reads the list and changes nothing. Without sudo, lsof lists only programs running as you, and system programs are missing. Each row is an open file; the first column names the program.
A program listed there is a lead, not proof. Quitting it is cheap, so quit it normally and retry.
If it says “being used by another task”
Finder says the item can’t be moved or opened “because it’s being used by another task, such as moving or copying an item”.
While Finder copies a file, it marks the copy as unfinished. If the copy was interrupted, the mark can stay behind, and Finder keeps refusing the item. We reproduced that refusal on test files.
The mark is stored in a hidden attribute on the file. It starts with the bytes 62 72 6F 6B.
% xattr -px com.apple.FinderInfo ~/Desktop/report.pdf62 72 6F 6B 4D 41 43 53 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00A first line starting 62 72 6F 6B is the leftover copy mark. Anything else, or “No such xattr”, means this is not the problem.
Fixif the copy mark is there, first make sure no copy is still running. Then remove the mark with xattr -d com.apple.FinderInfo followed by the file’s path. This also clears that file’s Finder color label and other Finder flags. The file’s contents are not touched.
Why not force-delete it
Guides often suggest deleting the item in Terminal with rm -rf. That skips the Trash, so there is no undo, and a mistyped path deletes the wrong thing.
It also tells you nothing about why Finder refused. On a network share, the other computer holding the file is still there.
What Noah can determine on this Mac
NoahNoah can show which drives and network shares are mounted, and how full they are. If you find a program holding the file, it can send that program a signal to stop it. Save your work in that program first.
Noah cannot name which program holds a file, and it cannot work that out from the list of running programs either. It cannot check a file for the leftover copy mark either. And it cannot see who has a file open on a server or another computer.
The short version
- The error behind the message is a busy result. It does not prove an app has the file open.
- Network share: another computer may hold the file. Ask, check the server, then reconnect.
- This Mac or an external drive: retry after a few seconds, quit apps, then restart.
- “Being used by another task” is a different message: a leftover copy mark.
- Deleting with rm -rf skips the Trash and cannot be undone.