Skip to content

AirDrop puts everything in Downloads and nothing ever removes it

Received files, screenshots and shared photos accumulate in one folder. Where they go and how to find them by date.

4 min read

Everything AirDropped to your Mac lands in Downloads, mixed in with installers and everything else you have ever saved. Video from a phone is the part that matters: a few minutes of 4K is a gigabyte, and it arrives without any indication of size.

Find what arrived

ls -lhS ~/Downloads | head -20
find ~/Downloads -type f -size +200M -exec ls -lh {} + 2>/dev/null \
  | sort -k5 -h | tail -15
mdfind -onlyin ~/Downloads 'kMDItemWhereFroms == "*"' 2>/dev/null | head

Sorting by size finds the videos immediately. Photos and videos from an iPhone keep their original names, which is usually enough to recognise what came from where.

Where else received files can land

Sent toLands in
AirDrop, acceptedDownloads
AirDrop photos, accepted into PhotosThe Photos library
Messages attachments you savedWherever you chose, often Downloads
Mail attachments you openedA Mail downloads folder as well
Continuity Camera scansThe app you scanned into

The second row is the one that catches people: accepting a photo into Photos puts it in the library and it is then subject to everything else the library does, including syncing to iCloud.

Keeping the folder manageable

  1. Sort Downloads by size once a month rather than by date.
  2. Move anything worth keeping into a named folder immediately.
  3. Delete videos as soon as you have watched or shared them.
  4. Turn on the setting to empty the Trash automatically after 30 days.

That is the same routine as clearing Downloads generally, which is worth doing in one pass since the folder mixes both.

Common questions

Where do AirDrop files go on a Mac?

To your Downloads folder, unless you accepted a photo directly into Photos, in which case it goes into the library. Nothing removes received files automatically.

How do I find AirDropped files?

Sort Downloads by size rather than by date, since received videos are usually the largest items. Photos and videos from an iPhone keep their original names, which helps identify them.

Why is my Downloads folder full of large videos?

Because a few minutes of 4K video from a phone is around a gigabyte, and AirDrop gives no indication of size when accepting. They accumulate alongside everything else in the folder.

Can I change where AirDrop saves files?

Received files go to Downloads by default. Moving them into a named folder as they arrive is the practical approach, along with emptying the Trash automatically after 30 days.

Read next