PhantomJS exists存在
exists 方法用于检查系统中是否存在给定的文件路径。如果存在,则返回 true,否则返回 false。
语法
它的语法如下:
var fs = require('fs');
fs.exists(filepath);
示例
以下示例展示了 exists() 方法的使用。
命令 - phantomjs exists.js C:\test\
var fs = require('fs');
var system = require('system');
console.log(fs.exists(system.args[1]));
phantom.exit();
以上程序会生成以下输出。
True