PhantomJS - isFile



This method checks whether the supplied filepath is a file or not. It returns true if the filepath is a file; false otherwise.

Syntax

Its syntax is as follows −

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

Example

The following example shows the use of isFile method.

Command − phantomjs isfile.js isfile.js

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

The above program generates the following output.

True
phantomjs_file_system_module_methods.htm
Advertisements