PhantomJS - isDirectory



The isDirectory function checks if a given file is a directory or not. It returns true, if the file is a directory, otherwise false. It returns false in case the given path does not exist.

Syntax

Its syntax is as follows −

var fs = require('fs'); 
fs.isDirectory(filepath);

Example

The following example shows how you can use the isDirectory method.

Command − phantomjs isdirectory.js C:\test\

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

The above program generates the following output.

True
phantomjs_file_system_module_methods.htm
Advertisements