1

Does anyone knows if the activex filesystemobject is blocked or doesn't work in the new windows8/ie10?

Sample code: (javascript)

fso = new ActiveXObject("Scripting.FileSystemObject"); //error
d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName("c:\")));
Ren
  • 1,111
  • 5
  • 15
  • 24
havr
  • 51
  • 10

1 Answers1

0

the error may be the second line: you need to escape the backslash "c:\"

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265