2017-03-23 01:05:20 +13:00

9 lines
387 B
JavaScript
Executable File

// Please note on first read or write - the Flash file system will be formatted if not intialised.
var files = require("fs").readdirSync();
require("fs").writeFileSync("hello world.txt", "This is the way the world ends\nHello World\nnot with a bang but a whimper.\n");
console.log(require("fs").readFileSync("hello world.txt"));
var f = E.openFile("hello world.txt","r");
f.read(100);