PhantomJS - changeWorkingDirectory



它允许您更改工作目录,如果成功,则返回 true,否则返回 false。

语法

其语法如下所示 −

fs.changeWorkingDirectory(filepath);

示例

我们来看一个 changeWorkingDirectory 方法的示例。

var fs = require('fs'); 
console.log(fs.workingDirectory);   // prints the location where phantomjs is running 
fs.changeWorkingDirectory("C:\\"); 
console.log(fs.workingDirectory);   // prints C:/ 

以上程序生成以下 输出

C:/phantomjs/bin 
C:/ 
phantomjs_file_system_module_methods.htm
广告