How to Open App Data on Windows, Mac, Android, and iOS

App data is the behind-the-scenes information every application stores to remember your preferences, save progress, cache files, and keep you logged in. Knowing how to find and access it gives you real control — whether you're troubleshooting an app, freeing up storage, migrating to a new device, or just curious about what's being saved on your behalf.

What Is App Data, Exactly?

When any app runs, it generates and stores several types of data:

  • Configuration files — your settings and preferences
  • Cache — temporary files that speed up loading
  • Saved states — where you left off in the app
  • Credentials and tokens — login information stored locally
  • Databases — structured data like contacts, messages, or notes

These files are usually hidden from casual browsing by default. Operating systems tuck them away to prevent accidental deletion — but they're absolutely accessible when you know where to look.

How to Open App Data on Windows

Windows stores most app data in the AppData folder, which is hidden by default. There are three subfolders you'll encounter:

SubfolderWhat It Contains
AppDataLocalData specific to the local machine
AppDataLocalLowData for lower-permission apps (e.g., browsers in sandbox mode)
AppDataRoamingData that syncs across devices on a network

To access it:

  1. Press Windows + R to open the Run dialog
  2. Type %AppData% and press Enter — this opens the Roaming folder directly
  3. To reach the Local folder, type %LocalAppData% instead

Alternatively, enable hidden files in File Explorer: go to View → Show → Hidden items, then navigate manually to C:Users[YourUsername]AppData.

For modern Windows Store apps, data lives in a different location: C:Users[YourUsername]AppDataLocalPackages. Each app has its own folder named with a long string identifier.

How to Open App Data on macOS

Mac organizes app-related files across a few locations in the Library folder, which is also hidden by default.

To open it:

  1. In Finder, hold Option and click the Go menu — Library appears as a hidden option
  2. Or press Cmd + Shift + G and type ~/Library/

Key subfolders to know:

FolderPurpose
~/Library/Application SupportCore app data and databases
~/Library/PreferencesSettings files (.plist format)
~/Library/CachesTemporary cached files
~/Library/ContainersSandboxed app data (Mac App Store apps)

Apps downloaded from the Mac App Store use the Containers folder and are sandboxed, meaning their data is more isolated compared to apps installed directly from developer websites.

How to Open App Data on Android 📱

Android handles app data differently depending on whether the device is rooted and what type of data you're looking for.

For non-rooted devices, you can access some app data through:

  • Settings → Apps → [App Name] → Storage — shows cache and data size, with options to clear each
  • The Files app or a third-party file manager — gives access to the app's external storage folder at Internal Storage/Android/data/[package.name]/

Internal app data (stored in /data/data/) is protected by Android's sandboxing and requires root access to browse directly. This is intentional — it protects sensitive data like login tokens and app databases from other apps.

For backing up or migrating app data without root, tools like Android Backup (via ADB on a computer) or app-specific export features are the practical route.

How to Open App Data on iOS

iOS is the most locked-down of the major platforms when it comes to direct app data access. Apple's sandboxing model means each app's data is isolated and not browsable through a standard file system view.

What you can access:

  • Settings → General → iPhone Storage → [App Name] — shows storage breakdown and lets you offload or delete the app
  • The Files app — apps that explicitly support it can expose a folder (e.g., documents saved by productivity apps)
  • iTunes or Finder backups — backing up your device captures app data, and some third-party tools can extract individual app data from those backups

For developers or power users, Xcode provides access to an app's container data when the device is connected to a Mac, but this is a technical workflow outside typical user needs.

The Variables That Change Everything 🔧

How you access app data — and what you can actually do with it — shifts based on several factors:

  • Operating system and version — newer OS versions sometimes change default folder locations or add additional restrictions
  • How the app was installed — store-distributed apps are often more sandboxed than direct installs
  • Device ownership model — managed enterprise devices may block access to certain directories
  • Root or admin status — elevated permissions unlock deeper access on Android and desktop systems
  • The app itself — some apps provide built-in export or backup tools; others offer no user-facing data access at all

On desktop systems (Windows, macOS, Linux), the access spectrum runs from completely open to moderately restricted. On mobile, the spectrum runs from limited (non-rooted Android) to highly restricted (iOS). What's straightforward on one platform may require workarounds or developer tools on another.

The right approach depends entirely on what app you're dealing with, what you're trying to do with the data, and what platform you're on — and that combination varies significantly from one setup to the next.