PhantomJS - read



This method reads the data present in a specified file.

Syntax

Its syntax is as follows −

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

Example

Let us take a look at an example to understand how the read method works.

Command − phantomjs read.js test.txt

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

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

Test.txt file

I am Testing Phantomjs

The above program generates the following output.

I am Testing Phantomjs
phantomjs_file_system_module_methods.htm
Advertisements