/ Published in: JavaScript
URL: https://developer.mozilla.org/en/nsLocalFile
Expand |
Embed | Plain Text
function getFileSize(path) { var file = Components.classes["@mozilla.org/file/local;1"]. createInstance(Components.interfaces.nsILocalFile); file.initWithPath(path); return file.fileSize; }
You need to login to post a comment.
