Reputation: 4704
I'm looking for the appropriate way of storing files into the document folder within phonegap/cordova.
I've done some google searches but all I seem to find is how to use local storage or webSQL.
Also looked at the phonegap plugins github page but nothing seems promising.
The file I'm looking to store is actually a binary file I'll download from the internet.
Upvotes: 1
Views: 4306
Reputation: 23273
Then you will want to use FileTransfer.download to get the binary file from the internet. Then you can manipulate it using the File API.
Upvotes: 2