54

I'm trying to access the documents directory at iphone device to see a log file that I saved while executing the app.

I know this can be done for simulator. (you can browse the document directory of your app with Finder)

Can this be done for device?

Thank you

alain.janinm
  • 19,035
  • 10
  • 56
  • 103
eugene
  • 33,301
  • 47
  • 188
  • 382

8 Answers8

56

In Xcode 6 you should open Devices window to download it.

enter image description here

rockXrock
  • 3,303
  • 1
  • 23
  • 18
49

You can open Organizer in Xcode and download the documents directory when your device is connected right ?

Viraj
  • 1,870
  • 22
  • 31
  • 1
    For the record, Viraj's answer does what you need. If you go into Organizer - Device - Applications and scroll down then hit download. Sorry, can't post an image being a new user. – Steve Oct 04 '12 at 10:58
  • 1
    Actually this is the best answer. – Fmessina Jan 09 '13 at 14:26
18

I'm going to combine the two solutions together and add screenshots for clarity. This is with Xcode 7.

View/Download App Documents

  1. Open the Devices window through the menu Window -> Devices.
  2. Select your device.
  3. Select your application.
  4. Click the gear button for the options.

View/Download Documents

View/Download/Delete Documents through iTunes


IMPORTANT!!!
If you have documents within a subfolder, you will not be able to see or change them through iTunes.


  1. Select the Info.plist file in the Project navigator.
  2. Click the + button next to any property to add another.
  3. Scroll down the list or type to find Application supports iTunes file sharing.
  4. Change boolean value to YES.
  5. Re-build/install application.

Add file sharing support

mikeho
  • 6,080
  • 2
  • 31
  • 46
  • Had the same issue on xamarin.ios. After adding itunes permission, i can view the inner folders of my application on device. – Vipin Krishna Jul 17 '20 at 08:19
17

Hi Viraj's anwer is the way to go .Here is a screenshot: enter image description here

YogiAR
  • 2,059
  • 19
  • 43
10

iOS provides a framework to share documents between your application & iTunes. Check out the Core Services Layer section of the Apple docs, specifically the File-Sharing Support section. It explains how to do this:

  1. Add the UIFileSharingEnabled key to your application’s Info.plist file and set the value of the key to YES.
  2. Put whatever files you want to share in your application’s Documents directory.

On a side note, if this is just for debugging, you can always print logs using the default NSLog function and check the output using OS X's Console.

phaxian
  • 1,036
  • 14
  • 26
  • for whoever might need this, you need to delete your app from device and reinstall to make this work. – eugene Mar 31 '11 at 12:08
  • and this works for iOs 3.2 or greater.. wish there was some way to do this in lower iOS. i'm having weird crash (which i suspect sqlite misuse) only in 3.12 – eugene Apr 01 '11 at 07:21
9

You also can use itunes for the same, but to view in itunes make change as below in your .plist Add new key as "Application supports iTunes file sharing" and make it as boolen with value YES

Like this

Kirtikumar A.
  • 3,892
  • 40
  • 41
1

With MacOS Catalina, Apple has made it very easy for reading the files written from the Documents directory.

Here are the steps:

  1. Once the device is connected to the Mac, it should be listed under the 'Locations' section in Finder as follows:

enter image description here

  1. Select the device. From the tab bar below the device details select 'Files'. You will be able to see a list of apps that stored files to the Documents directory. Expanding each app will show the files with its document directory.

enter image description here

You can drag and drop these files to any location in the Mac for further use

Gurunath Sripad
  • 487
  • 1
  • 6
  • 14
-1

One way can be to use iExplorer Download link iExplorer

Go to your app and Documents folder can be seen

Muhammad Nayab
  • 1,344
  • 12
  • 13