Access application files on iOS simulator

During development we often need to check what files are produced by our application. Sometimes we need to add some files to our app folder for testing. In this article we will see how we can access and manage application files on the iOS simulator.

# Get path to app directory

To get the path to our application directory on the simulator, we will add a print statement inside application(_:didFinishLaunchingWithOptions:) method in AppDelegate class. This will print NSHomeDirectory() in Xcode console on app launch.

class AppDelegate: UIResponder, UIApplicationDelegate {
    func application(_ application: UIApplication,
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    ) -> Bool {
        
        print("Application directory: \(NSHomeDirectory())")
        return true
    }
}
Swift Gems by Natalia Panferova book coverSwift Gems by Natalia Panferova book cover

Level up your Swift skills!$35

100+ tips to take your Swift code to the next level

Swift Gemsby Natalia Panferova

  • Advanced Swift techniques for experienced developers bypassing basic tutorials
  • Curated, actionable tips ready for immediate integration into any Swift project
  • Strategies to improve code quality, structure, and performance across all platforms

Level up your Swift skills!

100+ tips to take your Swift code to the next level

Swift Gems by Natalia Panferova book coverSwift Gems by Natalia Panferova book cover

Swift Gems

by Natalia Panferova

$35

# Open application folder in Finder

First, copy the path to the app folder from Xcode console.

Xcode screenshot with the path to the app folder printed in the console

Then open Finder, click on Go -> Go to Folder and paste the application directory path.

You will now be able to browse all the files in your application folder.

Screenshot of Finder app showing subfolders in the app folder

# Manage files in Documents folder

Files that your app saves in .documentDirectory will appear inside the Documents folder. You can open them to check their contents or you can add some extra files for testing.

Screenshot of Finder app with Documents folder of the app open

# Browse Core Data SQLite database

If your app uses Core Data, you can find your database .sqlite file inside Library/Application Support. You can then use any SQLite viewer to browse the contents of your database, for example SQLPro for SQLite.