PhantomJS - makeDirectory



This method creates a new directory.

Syntax

Its syntax is as follows −

var fs = require('fs'); 
fs.makeDirectory(path); 

Example

Command − phantomjs makedirectory.js newfiles

var fs = require('fs'); 
var system = require('system'); 
var path = system.args[1]; 
var md = fs.makeDirectory(path); 

console.log(fs.isDirectory(path)); 
phantom.exit();

The above program generates the following output.

True
phantomjs_file_system_module_methods.htm
Advertisements