次のコードを使用していますが、ローカルで使用すると問題なく動作しますが、サーバーの目的で使用できますか??
function WriteToFile(data) {
var currentdate = new Date();
var datetime = "Time: " + currentdate.getDate() + "/" + (currentdate.getMonth()+1) + "/" + currentdate.getFullYear() + " @ " + currentdate.getHours() + ":" + currentdate.getMinutes() + ":" + currentdate.getSeconds();
var fso = new ActiveXObject("Scripting.FileSystemObject");
var a = fso.OpenTextFile("C:\\logs\\log.txt", 8);
a.WriteLine(datetime);
a.WriteLine(data + "\n");
a.Close();
}
Z: ドライブの txt ファイルへのパスをすべて試してみましたが、まったくうまくいきませんでした。これは可能ですか?また、フォルダーへの「Everyone」へのアクセスを許可したため、読み取りと書き込みが可能ですが、txt ファイルを開いて編集することはできません。記録のために、私はIE8を使用しています。
助言がありますか?