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?