使用JS创建目录

时间:2014-06-09 15:30:27

标签: javascript activexobject filesystemobject

如何使用JS创建文件夹:

    var sFolderPath = 'images';
    var fso = new ActiveXObject('Scripting.FileSystemObject');
    if (!fso.FolderExists(sFolderPath)) {
        fso.CreateFolder(retVal);
        return;
        }

我收到此错误:Uncaught ReferenceError: ActiveXObject is not defined

我知道" ActiveXObject"只在IE上工作,所以我需要其他适用于所有浏览器的解决方案..

1 个答案:

答案 0 :(得分:1)

只有Internet Explorer支持ActiveXObject。如果您在其他浏览器中尝试此操作,则无法获得支持。