Skip to content

Instantly share code, notes, and snippets.

View laim2003's full-sized avatar
🏠
at home

Luke laim2003

🏠
at home
View GitHub Profile
@laim2003
laim2003 / read-write-file.js
Created September 24, 2018 07:48
Read Write to file with javascript
/// write to file
var txtFile = "c:/test.txt";
var file = new File(txtFile);
var str = "My string of text";
file.open("w"); // open file with write access
file.writeln("First line of text");
file.writeln("Second line of text " + str);
file.write(str);
file.close();
@laim2003
laim2003 / read-write-file.js
Created September 24, 2018 07:48
Read Write to file with javascript
/// write to file
var txtFile = "c:/test.txt";
var file = new File(txtFile);
var str = "My string of text";
file.open("w"); // open file with write access
file.writeln("First line of text");
file.writeln("Second line of text " + str);
file.write(str);
file.close();