Как не мучался, но isReady=false
В чем может быть проблема? Стоит IBM WebSphere
<script>
function f1(f){
alert(f);
if (f==1) {
var fs, a, ForAppending;
ForAppending = 8;
fs = new ActiveXObject("Scripting.FileSystemObject");
var d = fs.GetDrive("E");
document.write("E:"+d.IsReady);
for (var i=0; i<1000; i++){
document.write("d="+d.IsReady);
}
a = fs.OpenTextFile("E:\\Program Files\\IBM\\WebSphere\\AppServer\\profiles\\AppSrv02\\installedApps\\WASNode01Cell\\flexWorkflowEAR.ear\\flexWorkflow.war\\test_response.txt", ForAppending, false);
//для чтения
//a = myfile.Read(Число в байтах)
//a = myfile.ReadLine()
a = myfile.ReadAll()
//для записи
//a.WriteLine("строка")
//a.WriteBlankLines(1) - пустая строка
//a.Write("строка")
a.Close();
document.write(a);
}
}
</script>