Skip to content

Instantly share code, notes, and snippets.

@moduscreate
Last active August 29, 2015 14:18
Show Gist options
  • Save moduscreate/fc933c38d097362e4997 to your computer and use it in GitHub Desktop.
Save moduscreate/fc933c38d097362e4997 to your computer and use it in GitHub Desktop.
var {
MCFileWriterUtil
} = require('NativeModules');
// Step #1
MCFileWriterUtil.writeFile(
'MyFile.txt', // File name
'Some Text', // File contents
function errorCallback(results) {
alert('Error: ' + results);
},
function successCallback(results) {
alert('Success : ' + results);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment