标题: 如何获得XUL应用的当前profile,希望这篇英文日志能够帮到惯用英语搜索的人
When we launch our XUL application in multiple profiles mode, we may need to know which profile it works on.
Mozilla provides the interfaces as [color=blue][b]nsIToolkitProfileService [/b][/color]to get current profile by reading the attribute "[color=blue]selectedProfile[/color]". But in some cases, it doesn't work.
For example, we launch XUL as "
I solved this problem by detecting the folder name of the profile root directory. As for the same reason, you can't get the folder from nsIToolkitProfileService. But, we can get current profile root dir, from the File API. For example,
Simple, but it works well. ;)
When we launch our XUL application in multiple profiles mode, we may need to know which profile it works on.
Mozilla provides the interfaces as [color=blue][b]nsIToolkitProfileService [/b][/color]to get current profile by reading the attribute "[color=blue]selectedProfile[/color]". But in some cases, it doesn't work.
For example, we launch XUL as "
xulrunner.exe -no-remote -profile <profile path or name>", you can't get the right profile, it always return the default profile configured in file "//$USERPROFILE\Application Data\$vendor\$appname\Profiles\$random.default".I solved this problem by detecting the folder name of the profile root directory. As for the same reason, you can't get the folder from nsIToolkitProfileService. But, we can get current profile root dir, from the File API. For example,
var dirService = Components.classes["@mozilla.org/file/directory_service;1"].getService(Components.interfaces.nsIProperties);
var profDir = dirService.get("ProfD", Components.interfaces.nsIFile);
var profName = profDir.leafName;Simple, but it works well. ;)
本文提供了一种解决XUL应用在多配置文件模式下获取当前使用配置文件的方法,通过检测配置文件根目录文件夹名称,并利用File API获取当前配置文件路径。
5314

被折叠的 条评论
为什么被折叠?



