- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他内容
- 命令行界面
- PhantomJS - 屏幕捕获
- PhantomJS - 页面自动化
- PhantomJS - 网络监视
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用资源
- PhantomJS - 快速指南
- PhantomJS - 有用资源
- PhantomJS - 讨论
PhantomJS - 列表
list 方法返回目录中存在的所有文件。
语法
其语法如下 −
var fs = require('fs'); fs.list(path);
范例
以下范例显示 list 方法的用法。
命令 − phantomjs list.js C:\phantomjs\
var fs = require('fs'); var system = require('system'); var path = system.args[1]; if (fs.isDirectory(path)) { console.log(fs.list(path)); } phantom.exit();
上述程序会产生以下 输出。
.,..,bin,ChangeLog,examples,LICENSE.BSD,README.md,third-party.txt
输出显示 PhantomJS 目录中存在的所有文件。
phantomjs_file_system_module_methods.htm
广告