简而言之:有没有办法找到 xul 应用程序的当前目录完整路径?
长解释:
我想在 xul 浏览器应用程序中打开一些 html 文件。应从 xul 应用程序以编程方式设置 html 文件的路径。html 文件位于我的 xul 应用程序的文件夹之外,但在同一级别。(用户将从 SVN 签出这两个文件夹,xul 应用程序没有可用的安装)
如果我设置像“file:///c:\temp\processing-sample\index.html”这样的完整路径,它会很好地打开文件
我想要做的是打开与我的 xul 应用程序相关的文件。
我发现我可以打开用户的个人资料路径:
var DIR_SERVICE = new Components.Constructor("@mozilla.org/file/directory_service;1", "nsIProperties");
var path = (new DIR_SERVICE()).get("UChrm", Components.interfaces.nsIFile).path;
var appletPath;
// find directory separator type
if (path.search(/\\/) != -1)
{
appletPath = path + "\\myApp\\content\\applet.html"
}
else
{
appletPath = path + "/myApp/content/applet.html"
}
// Cargar el applet en el iframe
var appletFile = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile);
appletFile.initWithPath(appletPath);
var appletURL = Components.classes["@mozilla.org/network/protocol;1?name=file"].createInstance(Components.interfaces.nsIFileProtocolHandler).getURLSpecFromFile(appletFile);
var appletFrame = document.getElementById("appletFrame");
appletFrame.setAttribute("src", appletURL);
有没有办法找到 xul 应用程序的当前目录完整路径?