How might I learn the size of a file located in a local filesystem exposed through the HTML5 API?
I'm expecting something along the lines of,
fileSystem.root.getFile(path, { create: false }, function (fileEntry) {
// fileEntry.size - ????????
});
...to be available, but haven't found anything like it.