PhantomJS - lastModified



This method returns the details of the last modification done to a given file. It returns the date and time when the file was last modified.

Syntax

Its syntax is as follows −

var fs = require('fs'); 
fs.lastModified(filename); 

Example

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

The above program generates the following output.

Sat May 13 2017 15:18:59 GMT+0530 (India Standard Time)
phantomjs_file_system_module_methods.htm
Advertisements