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

Diese Übersetzung ist unvollständig. Bitte helfen Sie, diesen Artikel aus dem Englischen zu übersetzen.

Summary

Returns the last modified date of the file. Files without a known last modified date use the current date instead.

Syntax

var time = instanceOfFile.lastModifiedDate

Value

A Date object.

Example

// fileInput is a HTMLInputElement: 
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

Specification Status Comment
File API
Die Definition von 'lastModifiedDate' in dieser Spezifikation.
Arbeitsentwurf Initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
File.lastModified 13.0 15.0 (15.0) 10.0 16.0 Nicht unterstützt
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
File.lastModified Nicht unterstützt Nicht unterstützt Nicht unterstützt Nicht unterstützt Nicht unterstützt

See also

Schlagwörter des Dokuments und Mitwirkende

Schlagwörter: 
 Mitwirkende an dieser Seite: fscholz, nothine
 Zuletzt aktualisiert von: fscholz,