Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

File.lastModifiedDate

Deprecated
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.

The File.lastModifiedDate read-only property returns the last modified date of the file. Files without a known last modified date returns the current date .

Syntax

var time = instanceOfFile.lastModifiedDate

Value

A Date object.

Example

// fileInput is a HTMLInputElement: <input type="file" multiple id="myfileinput">
var fileInput = document.getElementById("myfileinput");

// files is a FileList object (simliar to NodeList)
var files = fileInput.files;

for (var i = 0; i < files.length; i++) {
  alert(files[i].name + " has a last modified date of " + files[i].lastModifiedDate);
}

Specifications

Though present in early draft of the File API spec, this method has been removed from it and is now non-standard.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
File.lastModified 13.0 15.0 (15.0) 10.0 16.0 No support
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
File.lastModified No support No support No support No support No support

See also

Document Tags and Contributors

 Contributors to this page: teoli, Jeremie, iamanupmenon, Sheppy, evilpie, ethertank, trevorh
 Last updated by: teoli,