Titanium Appcelerator中是否有一种方法可以在下载文件夹或共享文档文件夹中读/写文件。 根据appcelerator文档:http://docs.appcelerator.com/platform/latest/#!/guide/Filesystem_Access_and_Storage Ti.Filesystem.applicationDataDirectory 只能由应用本身访问。 我使用
在应用程序的文档文件夹中添加文件 var f = Ti.Filesystem.getFile(timelogsData,'timelogs.txt');f.write(data);
然后尝试通过iExplorer和其他文件管理器访问,但没有运气。我只能通过我的应用程序阅读它。
根据Apple文档:https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html#//apple_ref/doc/uid/TP40010672-CH2-SW28 app的文档文件夹数据可以共享。
我的目标是,如果互联网不可用,我的应用程序需要访问互联网,然后它会将数据保存到最终用户可以手动或通过电子邮件发送给我的文件中。
提前致谢。