Location of my own directories
Posted
by Nicsoft
on Stack Overflow
See other posts from Stack Overflow
or by Nicsoft
Published on 2010-02-23T17:00:47Z
Indexed on
2010/05/17
1:10 UTC
Read the original article
Hit count: 293
Hello,
I am trying to understand how to create my own directory tree and access it from my application.
I am doing some kind of learning program and want to create a directory structure like this:
-MyLessonsDirectory
--LessonDirectory_1
---Step_1
---Step_2
---Step_3
--LessonDirectory_2
---Step_1
---Step_2
---Step_3
.
.
and so on
In each "Step"-directory I will have specific content for that step of the lesson. The content is added by me while developing. Hence, I don't want to create the structure and content from within the application, just access it and reading the content of the directories. If I can create this kind of structure and use it it will be very easy to create a nice design that makes it easy to create new lessons in my app.
What I cannot figure out is where I should create those directories in the file-structure in xCode and what is the path to those directories from my application.
Thanks in advance!
© Stack Overflow or respective owner