Where your files actually live on an iPhone, and who can see them
On a computer, a file has one home and every program can reach it. On iOS that is not true, and almost every confusing thing about storage on an iPhone follows from that single difference — including where a download went, why one app cannot open another’s files, and why deleting an app can take your library with it.
FoxDL Every app gets its own island
Each installed app runs in a sandbox: a private folder tree that only it can read and write. There is no shared C: drive, no /home, nothing an app can wander into. This is the foundation of the platform’s security model, and it is genuinely good — a badly behaved app cannot rifle through your other apps’ data, because it cannot see that the data exists.
Inside its sandbox, an app has a few directories with different rules, and those rules explain most of the odd behaviour people notice. Documents is for content the user created or brought in; it is included in backups, and an app may declare it visible in the Files app. Library/Application Support is for the app’s own working data — databases, indexes — backed up but not shown to the user. Library/Caches is for anything that can be recreated: it is not backed up, and the system will empty it without asking when storage runs low.
That last one is the source of a specific and very common surprise: thumbnails, previews and other derived files vanish after the phone gets full. A well-built app treats that as normal and regenerates them. An app that stored something irreplaceable in the cache has lost it.
The four places a file can be, and what that implies
| Location | Visible in Files | In iCloud Backup | Survives deleting the app |
|---|---|---|---|
| App sandbox → Documents | Yes, if the app opts in | Yes, unless excluded | No |
| App sandbox → Library | No | Yes (except Caches) | No |
| iCloud Drive | Yes | It is the cloud | Yes |
| External drive or SD card | Yes, while connected | No | Yes |
The fourth column is the one that catches people out. Removing an app deletes its entire sandbox — every file in it, immediately and without a warning that names what is going. If a file matters, it should not exist only inside one app.
What the Files app is, and what it is not
The Files app is a browser for a set of places you have granted it: iCloud Drive, any cloud provider that installed an extension, connected drives, and the Documents folder of every app that chose to expose it. It is genuinely a file manager, and for moving a PDF around it is entirely sufficient.
What it is not is a media library. It has no notion of what you have watched, no playlists, no favourites, no resume position, no idea that four files are episodes of one thing. It also cannot do anything with the contents of a file: it will not extract the audio from a video, it will not show you what is inside an archive without unpacking the whole thing, and it will not play half of what a media library contains.
So the practical arrangement on iOS is not “Files app or a file manager app”, it is both. Files for moving things between apps and drives; a media app for the library itself, with its folders visible in Files so nothing is trapped.
The operations a media library actually needs
Beyond create, rename, move and delete — which any file manager has — these are the ones that come up constantly with media.
Pull the audio out of a video
A recorded talk, a concert, a lesson: you want the sound and not the 3 GB of picture. Done properly this is a remux — the audio track is copied out untouched, in seconds, with no quality loss.
Archives without a round trip
Unpack a ZIP in place, or compress a folder before sending it. Bouncing out to a separate archiver app and back is the kind of friction that makes people give up on organising anything.
Favourites and playlists that survive tidying
The point below about identity: rename or move a file and everything pointing at it should still point at it.
Per-folder backup control
A 40 GB film folder does not belong in a 5 GB iCloud allowance. Being able to exclude one folder while keeping documents backed up is worth more than any compression setting.
Why renaming a file breaks so many apps
Most apps remember a file by its path — the text of where it is. It is the obvious approach and it works until the moment anything moves. Rename video.mkv to Interview.mkv and every favourite, playlist entry and resume position pointing at the old name is now pointing at nothing. Some apps hide this by silently dropping the entry; some show a broken row; almost none tell you why.
The alternative is to identify a file by something that survives being renamed. On a file system that means the inode — the identity the file system itself assigns — checked together with size and modification date, with a content fingerprint as a last resort. Rename, move between folders, or reorganise the whole library, and the row in the database is still the same row.
This matters more than it sounds, because it decides whether you can ever tidy up. A library you are afraid to reorganise stays messy forever.
Storage habits worth having on iOS
- Never let one app hold your only copy
Anything that exists only inside one app’s sandbox is one uninstall away from gone.
- Exclude big media folders from iCloud Backup
Not to save money — to stop backups failing silently because they no longer fit.
- Play from an external drive rather than copying
On iPad and Mac, a USB-C drive can be read in place. There is rarely a reason to duplicate a 40 GB library onto the device.
- Delete from inside the library, not around it
Removing a file behind an app’s back leaves a dead row pointing at nothing.
- Check what is actually large
It is almost always three films and a podcast backlog, not the thousand small things you were about to sort through.
Questions people ask
Where did my download go?
Into the sandbox of the app that downloaded it. If that app exposes its Documents folder, it will appear in the Files app under On My iPhone with the app’s name; if it does not, the file is reachable only from inside that app. Neither is wrong, but the first is much easier to live with.
Are my files gone if I delete the app?
Yes. Deleting an app removes its whole sandbox with it, and iOS does not itemise what it is about to remove. If the folder was in your iCloud Backup, restoring the device brings the files back; if it was excluded, they are gone. This is the single most common way people lose a library.
Can two apps share the same folder?
Not directly — the sandbox prevents it. What they can do is both reach a common place: iCloud Drive, an external drive, or a folder one app has exposed and the other opens through the document picker. Anything else means a copy.
Does converting a video to audio lose quality?
It should not. Extracting an existing audio track is a copy — the same bytes, in a new container. If it takes as long as the video is long, something is re-encoding rather than extracting, and quality is being lost for no reason.
How the library works in FoxDL
Real folders on disk, visible in the Files app, with the metadata a media library needs layered on top rather than replacing them.
- Create, rename, move, compress, unpack and delete, with multi-select on iPad and the Mac.
- Video → audio extraction that copies the existing track rather than re-encoding it.
- Favourites, playlists and resume positions survive renaming and moving, because rows are tracked by identity rather than by path.
- PDFs, Office documents and photos open in place — no bouncing to another app.
- Per-folder iCloud Backup control, so a film folder does not eat your quota.
- External drives and folders on iPad and Mac are browsed and played where they are, not copied in first.
- Your content lives in a normal
Documentsfolder that the Files app can see, so nothing is ever trapped in FoxDL.
Thumbnails live in the purgeable cache on purpose, and rebuild themselves if the system clears them.
Questions people ask about this
- What can the file manager actually do?
- Where are my files stored, and can I see them in the Files app?
- Can FoxDL zip and unzip files?
- How do I extract the audio from a video?
- Can I play from an external drive or another app’s folder?
- Can I control what goes into my iCloud backup?
Keep reading
Five ways to get a large file onto an iPhone, and when each is the right one
Wi-Fi, device to device, cloud, WebDAV or a drive — which route suits which job.
What a download manager does that a web browser will not
Why transfers stop when you switch apps, what resuming really requires, and how streams become files.
What a media app on your phone can see, and what it should never send
What a media app can see, how to read a privacy label, and why a lock is not encryption.
Your library, finally in one place.
Free to download. No account, no sign-up, and the whole feature set is in the free version.