Skip to content

Instantly share code, notes, and snippets.

@pineoc
Created January 6, 2016 06:34
Show Gist options
  • Save pineoc/600f8f3e5c7b91005cfd to your computer and use it in GitHub Desktop.
Save pineoc/600f8f3e5c7b91005cfd to your computer and use it in GitHub Desktop.
cordova.exec(
function(freeSpace) {
//return freeSpace 'KB'
alert('reported free space is ' + freeSpace / 1024 + 'MB');
},
function() {
alert('failed');
},
"File", "getFreeDiskSpace", []
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment