
- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕截图
- PhantomJS - 页面自动化
- PhantomJS - 网络监视
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - 大小
此方法返回文件的大小。
语法
语法如下 -
var fs = require('fs'); fs.size(path);
示例
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();
上述程序生成如下输出。
Size of file is : 625
phantomjs_file_system_module_methods.htm
广告