如何打开 XUL 的网络文件夹?对于我的 Firefox 工具栏,它可以访问像这样的驱动器,而不是像... 使用代码的C:
网络路径://Development
file.initWithPath("\\DEVELOPMENT2");
完整代码:
var file = Components.classes["@mozilla.org/file/local;1"]
.createInstance(Components.interfaces.nsILocalFile);
file.initWithPath("\\\DEVELOPMENT2"); //---> this is not working
//file.initWithPath("Y:"); ---> this is working
file.reveal();
var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
process.init(file);
var args = [];
process.run(false, args, args.length);
//end