- 文件系统模块
- PhantomJS - 属性
- PhantomJS - 方法
- 系统模块
- PhantomJS - 属性
- Web 服务器模块
- PhantomJS - 属性
- PhantomJS - 方法
- 其他
- 命令行界面
- PhantomJS - 屏幕截图
- PhantomJS - 页面自动化
- PhantomJS - 网络监控
- PhantomJS - 测试
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用的资源
- PhantomJS - 快速指南
- PhantomJS - 有用的资源
- PhantomJS - 讨论
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
广告