Skip to content

Instantly share code, notes, and snippets.

@ethanpil
Created March 19, 2014 13:02
Show Gist options
  • Save ethanpil/9641159 to your computer and use it in GitHub Desktop.
Save ethanpil/9641159 to your computer and use it in GitHub Desktop.
window.resolveLocalFileSystemURI(filePath, function(fileEntry) {
fileEntry.file(function(fileObj) {
console.log("Size = " + fileObj.size);
console.log("Size = " + fileObj.fullPath);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment