Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

write file using WScript.shell

How can I write text files using WScript I'm really new on this that's why I cannot give some details. I want to write a log file that can be stored in c://users/user/appdata/local

my sample code, using FileSystemObject

function WriteFile() 
{
   var fso  = new ActiveXObject("Scripting.FileSystemObject"); 
   var fh = fso.CreateTextFile("d:\\Test.txt", true); 
   fh.WriteLine("Some text goes here..."); 
   fh.Close(); 
}

<body onload = "WriteFile();">
</body>

it does return in d: but in local c: it wont.

like image 547
Robin Carlo Catacutan Avatar asked Oct 23 '25 16:10

Robin Carlo Catacutan


1 Answers

You are missing one important parameter in fh. The right code is:

var fh = fso.CreateTextFile("d:\\Test.txt", 2, true);

whereas 2 is a bytecode, which tells to fso to write a file. For reading value is 1, and for appending value is 8.

This is clear to you by now, I suppose.

like image 101
Teemu Avatar answered Oct 26 '25 04:10

Teemu



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!