Forked from mikebranstein/nativescript-file-system-example
Created
October 5, 2017 19:36
-
-
Save creationix/59abd29e3a24e5cff77b49e2be752134 to your computer and use it in GitHub Desktop.
NativeScript file-system module example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fileSystemModule = require("file-system"); | |
var fileName = "persistedFile.json"; | |
var file = fileSystemModule.knownFolders.documents().getFile(fileName); | |
var data = [{"id": "1", "value": "NativeScript"}, ...]; | |
// write data to the file, converted to a JSON string first | |
file.writeText(JSON.stringify(data)); | |
// read data from the file | |
file.readText().then(function(content) { | |
// content contains the data read from the file | |
}); | |
// clear data form the file | |
file.clear(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment