Where Does Simulator 8.0 Store Files

ios-simulator, ios8, xcode6

Solution

Something like this:

/Users/{YOUR NAME}/Library/Developer/CoreSimulator/Devices/{DEVICE ID}/data/Containers/Data/Application/{APPLICATION ID}/

The Device ID can be a bit hard to find (basically, there's one folder with a random-looking name for each simulator you have). To get to the correct folder, I used this terminal command:

find ~ -name myFile.txt

Where `myFile.txt` was one of the files in my application. The terminal then printed out the full location—this might be more useful to you then checking each one-by-one, if you have a file (or, can make one) that you can search for.

Problem

I cannot find the directory for the new simulator data in Xcode-6 Beta for IOS 8 It is not in ~/Library/Application Support/IPhone Simulator/ Where does the iPhone Simulator store its data?

Original source

Related problems