function WriteFile()
{
var fh = fopen("c:\\MyFile.txt", 3);
if(fh!=-1)
{
var str = "Some text goes here...";
fwrite(fh, str);
fclose(fh);
}
}
WriteFile();
I am getting an error that says line 3 char 5 object expected.
I'm new to JS I don't know much about FSO manipulation. I'm sure it's an easy problem thanks for any help in advance.
{
var fh = fopen("c:\\MyFile.txt", 3);
if(fh!=-1)
{
var str = "Some text goes here...";
fwrite(fh, str);
fclose(fh);
}
}
WriteFile();
I am getting an error that says line 3 char 5 object expected.
I'm new to JS I don't know much about FSO manipulation. I'm sure it's an easy problem thanks for any help in advance.