Html5 local storage on sd card

Hi! I searched a lot, but I did not find the answer to this question: is it possible to save or install the local html5 storage on the SD card or locally on the device? Can anybody help me? Thank you

+3
source share
2 answers

I do not think that the Local Storage API allows you to determine the physical location of the stored data. It just allows you to store key / value pairs in a user's browser through JavaScript, such as a cookie, except that it remains local and not transmitted to the server.

The browser may want to put its local storage data on the SD card or on the device on which it works, but you cannot check the physical location of the data.

. http://diveintohtml5.ep.io/storage.html#localstorage .

+3

http://www.w3.org/TR/file-writer-api

, , . , chrome, ( ), , chrome api, wip. , , . .

+1

All Articles