Orchid
Orchid

Reputation: 291

View files in app's filesystem for iOS for testing?

I am working on an app right now that is supposed to generate a text document from an NSString , save it to the app's documents foldr, and then upload it to the iCloud.

I want to check and see if the file is actually being created and saved in the Documents folder in my app's Sandbox.

How do you look at the files saved on an iPhone? (Either on the phone or when it is connected via USB to my Mac.)

This is just for testing purposes and all I want to do is view the file name and contents, not edit them in any way.

Upvotes: 0

Views: 272

Answers (2)

Tommy
Tommy

Reputation: 100612

In addition to pdesantis's answer, you can achieve what you want through Xcode rather than relying on third-party tools. Open the Organiser, select the Devices tab, select Applications under the relevant device in the column on the left, then select the app you're interested in in the large area on the right and click Download at the bottom of the screen to grab its current local storage.

Upvotes: 2

pdesantis
pdesantis

Reputation: 879

Try this http://www.macroplant.com/iexplorer/

Upvotes: 2

Related Questions