Reputation: 747
I created an adobe air based ios app, which creates a textfile ( a csv document to be precise ) I used:
var file:File = File.documentsDirectory.resolvePath(timestamp+".txt");
var stream:FileStream = new FileStream();
stream.open(file, FileMode.WRITE);
stream.writeUTFBytes(the_string);
the file gets created and I can access it using a third party tool like iExplorer. however in itunes I cannot get to this file.
is there some special thing I need to declare in the application descriptor? thanks a lot for all infos and suggestions.
Upvotes: 1
Views: 375
Reputation: 747
Well, the answer is "yes" ;)
What i found out i need to do ist add UIFileSharingEnabled
to the app-descriptor.xml and voilà: the documents appear in iTunes.
Upvotes: 1
Reputation: 707
The answer is simply NO
I had the same issue on some projects.
My "workaround" was a webserver to which I simply uploaded the files.
Upvotes: 0