Hi,
The following is a javascript code snippet to write to a file.
------------------------------------------------------
var fso, t;
fso = new ActiveXObject("Scripting.FileSystemObject");
t = fso.CreateFolder("C:\\file.txt", true);
t.writeline("Testing");
t.Close();
-------------------------------------------------------
However this is for Windows platform. Does anyone know if there is an equivalent method using Linux?
Thanks for your help.
The following is a javascript code snippet to write to a file.
------------------------------------------------------
var fso, t;
fso = new ActiveXObject("Scripting.FileSystemObject");
t = fso.CreateFolder("C:\\file.txt", true);
t.writeline("Testing");
t.Close();
-------------------------------------------------------
However this is for Windows platform. Does anyone know if there is an equivalent method using Linux?
Thanks for your help.