- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 截屏
- PhantomJS - 页面自动化
- PhantomJS - 网络监视
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 的有用资源
- PhantomJS - 快速指南
- PhantomJS 的有用资源
- PhantomJS - 讨论
PhantomJS - isExecutable
此方法检查给定文件是否可执行。如果是,返回 true;否则,返回 false。
语法
语法如下:
var fs=require('fs'); fs.isExecutable(filename);
示例
以下示例显示了 isExecutable 方法的用法。
命令 - Phantomjs isexecutable.js touch.js
var fs=require('fs'); var system = require('system'); var path = system.args[1]; if (fs.isExecutable(path)) { console.log(path+" is executable."); } else { console.log(path+" is NOT executable."); } phantom.exit();
上述程序会产生以下输出。
touch.js is NOT executable.
phantomjs_file_system_module_methods.htm
广告