Finding specific things
A Mac with several accounts hides files behind permissions, and search respects those walls.
files
can write to but not read
ls -la /Users/Shared
ls -la /Users/otheruser/Public
You can read another user's Public folder and Shared. You cannot read their home folder — Documents, Desktop, and the rest are 700 (owner only), and search skips what it cannot read.
ls /Users/otheruser # visible: the folder names
ls /Users/otheruser/Documents # Permission denied
An administrator can read other accounts with sudo:
sudo find /Users/otheruser -iname "*report*" 2>/dev/null
Ethically and practically, this is for your own second account or with consent — it is reading another person's files.
Put it in /Users/Shared or drop it into the target user's Public/Drop Box. Direct placement into their home fails on permissions.
Files another logged-in user has open may be locked or mid-write. And a file created in Shared inherits your ownership — the other user can read it but may not be able to modify it until permissions are opened:
chmod 666 /Users/Shared/thefile # both users read/write
Spotlight indexes per-user and respects permissions, so your search sees your files plus shared/public spaces, not other accounts' private files. That is correct behaviour, and it is why "search This Mac" can still miss a file that exists — it belongs to someone else.
Only their Public folder and /Users/Shared. Their home folder is owner-only; an admin can reach it with sudo, which means reading their files.
Place it in /Users/Shared or the recipient's Public/Drop Box. Direct placement in their home folder is blocked by permissions.
Everywhere keeps track of every file on your Mac — including the folders Spotlight hides and drives you have unplugged. Free for a day, then $19 once.
Download for Mac