Metadata

This interface supplies information about the state of a file or directory.

Properties

  • modificationTime: This is the time at which the file or directory was last modified. (Date)

Details

The Metadata object represents information about the state of a file or directory. You can get an instance of a Metadata object by calling the getMetadata method of a [DirectoryEntry](../directoryentry/directoryentry.html) or [FileEntry](../fileentry/fileentry.html) object.

Supported Platforms

  • Android
  • BlackBerry WebWorks (OS 5.0 and higher)
  • iOS
  • Windows Phone 7 and 8
  • Windows 8

Quick Example

function win(metadata) {
	console.log("Last Modified: " + metadata.modificationTime);
}

// Request the metadata object for this entry
entry.getMetadata(win, null);