source:http://stackoverflow.com/questions/24022570/where-does-simulator-8-0-store-files
Something like this:
1 | /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:
1 | 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.