简体   繁体   中英

ActiveXObject(“Scripting.FileSystemObject”) not working for me

I want to add names of files of a specific folder to an JS's array, but nothing happens:

var pics = new Array();

var x;
var fs = new ActiveXObject("Scripting.FileSystemObject");
alert('x');
var fo = fs.GetFolder(Server.MapPath("C:\wamp\www\newsite\ErfanGhiasiPanel\Slider Images"));
for (x in fo.files){
    pics.push(x.Name);
}

For instance, whet I insert an

alert('something')

after var fs = new ActiveXObject... or next lines, it won't appear. What you guys think?

Thank you

Assuming JScript + Classic ASP due to the MapPath (which you dont need in your case) you need to escape the path string;

var pics = [];
var fs = new ActiveXObject("Scripting.FileSystemObject");
var fo = new Enumerator(fs.GetFolder("C:\\wamp\\www\\newsite\\ErfanGhiasiPanel\\Slider Images").Files);

for (; !fo.atEnd(); fo.moveNext()) {
    pics.push(fo.item(0).Name)
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM