Benjamin

Results 1 comments of Benjamin

@domingosl @alex-steinberg @RonCan Try this: ``` const justTheNameOfTheFile = "file.txt"; window.requestFileSystem(window.LocalFileSystem.PERSISTENT, 0, async fs => { window.resolveLocalFileSystemURL(window.cordova.file.dataDirectory, async dirEntry => { dirEntry.getFile(justTheNameOfTheFile, { create: true, exclusive: false }, fileEntry =>...