I'd like to allow user to select a directory (in which I parse some text files) and store the result(List<File>)
in a PERSISTENT
storage on the same client so that when the user returns, there is no need to select the same directory again.
During the session selecting the directory (via <input webkitdirectory="..." />
) and then accessing the directory and parsing the file already works fine, but I've no idea on what kind of data I shall save in order to retrieve it later. I've tried by using window.webkitResolveLocalFileSystemURL()
but wasn't successful so far... any idea?