Reputation: 176
I curently develop an application for android and ios with phonegap. So I want to create folders and files in the files system of android and ios. How can I check if files exist and create my files in specific folder? And after that, how can I load them? all files I want to create and manipulate are JSON.
Upvotes: 0
Views: 67
Reputation: 17647
In order to achieve your goals you need this Cordova/Phonegap plugin:
https://github.com/apache/cordova-plugin-file
This plugin supports both Android and iOS platform.
Upvotes: 2