PhantomJS - list



The list method returns all the files present in a directory.

Syntax

Its syntax is as follows −

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

Example

The following example shows the use of list method.

Command − phantomjs list.js C:\phantomjs\

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

if (fs.isDirectory(path)) { 
   console.log(fs.list(path)); 
} 
phantom.exit(); 

The above program generates the following output.

.,..,bin,ChangeLog,examples,LICENSE.BSD,README.md,third-party.txt

The output shows all the files present in the PhantomJS directory.

phantomjs_file_system_module_methods.htm
Advertisements