PhantomJS - changeWorkingDirectory



It allows you to change the working directory and returns true, if successful, otherwise returns false.

Syntax

Its syntax is as follows −

fs.changeWorkingDirectory(filepath);

Example

Let us look at an example of the changeWorkingDirectory method.

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

The above program generates the following output.

C:/phantomjs/bin 
C:/ 
phantomjs_file_system_module_methods.htm
Advertisements