Skip to content

Instantly share code, notes, and snippets.

@valerykalashnikov
Last active August 29, 2015 13:56
Show Gist options
  • Save valerykalashnikov/9188883 to your computer and use it in GitHub Desktop.
Save valerykalashnikov/9188883 to your computer and use it in GitHub Desktop.
var onFileSystemError = function onFileSystemError() {
alert('the was an error during access to filesystem');
};
var remove_file = function(entry) {
entry.remove(function() {
self.model.remove();
self.model.set('synced',false);
self.render();
}, onFileSystemError);
};
window.requestFileSystem(window.LocalFileSystem.PERSISTENT, 0,
function(fileSystem) {
var root = fileSystem.root;
// retrieve a file and truncate it
root.getFile(filePath, {create: false}, remove_file, onFileSystemError);
},
onFileSystemError
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment