PhantomJS - size
This method returns the size of the file.
Syntax
Its syntax is as follows −
var fs = require('fs');
fs.size(path);
Example
var fs = require('fs');
var system = require('system');
var path = system.args[1];
var md = fs.size(path);
console.log("Size of file is : "+md);
phantom.exit();
The above program generates the following output.
Size of file is : 625
phantomjs_file_system_module_methods.htm
Advertisements