gpt4 book ai didi

javascript - 使用 WScript.shell 写入文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:52:53 26 4
gpt4 key购买 nike

我如何使用 WScript 编写文本文件我对此非常陌生,这就是我无法提供一些细节的原因。我想写一个日志文件,可以存储在c://users/user/appdata/local

我的示例代码,使用 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>

它确实在 d: 中返回,但在本地 c: 中它不会返回。

最佳答案

fh 中缺少一个重要参数。正确的代码是:

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

2是一个字节码,它告诉fso写一个文件。读取值为1,追加值为8。

我想你现在已经很清楚了。

关于javascript - 使用 WScript.shell 写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8461584/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com