Skip to content

Instantly share code, notes, and snippets.

View abekenza's full-sized avatar

Abzal Kultayev abekenza

  • Astana, Kazakhstan
View GitHub Profile
window.requestFileSystem(LocalFileSystem.TEMPORARY, 0, gotFS, fail);
function fail(error) {
console.log(error)
}
function gotFS(fileSystem) {
fileSystem.root.getDirectory("data", {create: true, exclusive: false}, gotDir, fail);
}