How to Get the Root Directory of My iOS App

where is the root of the Xcode app project directory located?

Got it.

Open Terminal, navigate to the directory that has your project. Type it like this:

cd ~/Path/To/Folder/Containing/yourProject

I saved mine on my desktop so it was simple.

Then type: pod init

This creates the pod file.

Then type:

open -a Xcode Podfile

This will open the file so that you can edit it.

How to get Xcode root folder directory path using Swift

AFAIK there is no direct way to access this, but what you can do is this for simulator builds:

Modify your xcode scheme to add an environment var SRCROOT with the value ${SRCROOT}

In your code, get the system environment using ProcessInfo:

let srcroot = ProcessInfo.processInfo.environment["SRCROOT"]

iOS: Access to root directory in a jailbroken iPhone

I answered here in a similar question How to get inbox all SMS on iphonse sdk?

It is possible if you have a jailbroken device. You may use jailcoder to fake code signing and then move your app to /Applications folder. This way you can access to any database in your iOS device jailbroken.

access iPhone simulator root and home directories

If you are trying to open the folder on your Mac, you can use a software named SimHolder.
If you want to access these folders in your iPhone Application on iOS simulator, you can't open any folder outside your iOS app's sandbox.

what is the project root in xcode exactly

In Xcode select the blue project file (top left) in the navigation bar.

In the Identity and Type Inspector ⌥⌘1 on the right click on the little arrow after the Full Path below Location.

A Finder window will open, that's the project root directory

How to get file path in iPhone app

Remember that the "folders/groups" you make in xcode, those which are yellowish are not reflected as real folders in your iPhone app. They are just there to structure your XCode project. You can nest as many yellow group as you want and they still only serve the purpose of organizing code in XCode.

EDIT

Make a folder outside of XCode then drag it over, and select "Create folder references for any added folders" instead of "Create groups for any added folders" in the popup.



Related Topics



Leave a reply



Submit