PhantomJS - isWritable



它检查给定文件是否可写。如果是,则返回true,否则返回false

语法

语法如下 −

var fs = require('fs'); 
fs.isWritable(filename); 

示例

以下示例显示了如何使用isWritable方法。

命令 − Phantomjs isfile.js isfile.js

var fs = require('fs'); 
var system = require('system'); 
console.log(fs.isWritable(system.args[1])); 
phantom.exit(); 

以上程序生成以下输出

True
phantomjs_file_system_module_methods.htm
广告