The next code produces address "/Documents/save" which is of course unwriteable:

    char buf[1024];
    getcwd(buf, 1024);

    ifstream fin((string(buf) + "Documents/" + filename).c_str());

because `getcwd' (get-working-dir?) returns root ("/"). I think, no Unix will let you work in root unless sudoed. So, what should I write to be able store data in iOS fs?

link|improve this question

80% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.