我正在使用下面的一段代碼,它在本地使用時工作得很好,但它可以用於服務器目的嗎?有什麼辦法可以將OpenTextFile用於服務器目的?
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的記錄。
有什麼建議嗎?
讀我的答案@ http://stackoverflow.com/questions/15537424/得到目錄中的所有文件夾列表#15537569 – 2013-04-09 15:02:56
@IOIOMAD並沒有真正回答我的問題 – randomizertech 2013-04-09 15:40:08