PhoneGap - Display available free space?
android, cordova, javascript
Solution
mostly for self-reference, there is now an api for this :
cordova.exec(win, fail, "File", "getFreeDiskSpace", []);
Problem
I am using PhoneGap and am trying to display to the user the amount of free space available for storage. I have tried various different types of code to get this to work but without luck. Does anyone have a working example of how to display free storage space in PhoneGap? I am currently working in android but I'm looking for a phonegap cross platform solution. Thank you.