The Wayback Machine - https://web.archive.org/web/20150907231900/https://developer.mozilla.org/it/docs/Web/API/DeviceStorageChangeEvent

DeviceStorageChangeEvent

di 5 collaboratori:

Questo articolo necessita di una revisione tecnica.

I volontari di MDN non hanno ancora tradotto questo articolo in Italiano. Registrati per tradurlo tu.

Non-standard
This feature is not on a current W3C standards track, but it is supported on the Firefox OS platform. Although implementations may change in the future and it is not supported widely across browsers, it is suitable for use in code dedicated to Firefox OS apps.

This API is available on Firefox OS for privileged or certified applications only.

Summary

The DeviceStorageChangeEvent provides information about any change made to a file inside a given storage area. It extends the Event interface.

The change event is triggered each time a file is created, modified, or deleted from the device storage system.

Properties

DeviceStorageChangeEvent.path Read only
A string giving the full path of the file affected by the change.
DeviceStorageChangeEvent.reason Read only
A string giving the reason of the change. Possible values are created, modified, or deleted.

Example

var sdcard = navigator.getDeviceStorage('sdcard');

sdcard.addEventListener("change", function (event) {
  var reason = event.reason;
  var path   = event.path;

  console.log('The file "' + path + '" has been ' + reason);
});

Specification

Not part of any specification.

See also

Etichette del documento e nomi di chi ha collaborato alla sua stesura

Contributors to this page: fscholz, MHasan, kscarfone, teoli, Jeremie
Ultima modifica di: fscholz,