views:

23

answers:

1

I am trying to see if cache files are successfully created but can't find their location on the disk (neither on simulator nor iPhone device)

Any ideas?

+3  A: 

They are located in

${APP_DIRECTORY}/Library/Caches/.CoreDataCaches
Marcus S. Zarra
I checked using Finder and .CoreDataCaches is not there.Under Caches I have only two items: AccessToMigrationLock and AccountMigrationInProgress... In the Simulator I have a folder named snapshots.Any suggestions?
Joshua
Welcome to unix. A filename with a dot prefix will be hidden in finder and at the console. By using the Terminal application and doing a `ls -la` you will see the directory.
Marcus S. Zarra
That did the trick. I can see all cache files now... thanx!
Joshua