blob: c3fc2479177661974b5901e840406a05078b4148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
function dumpPathOfProperty(prop)
{
dump(prop +' = ');
try
{
var file = dsprops.get(prop, Components.interfaces.nsIFile);
dump(file.path + '\n');
}
catch (ar)
{
dump('undefined or error \n');
}
}
var dscontractid = "@mozilla.org/file/directory_service;1"; // XXX old-style
var ds = Components.classes[dscontractid].getService();
var dsprops = ds.QueryInterface(Components.interfaces.nsIProperties);
dump("xpcom locations::\n");
// XPCOM Locations:
dumpPathOfProperty ("xpcom.currentProcess");
dumpPathOfProperty ("xpcom.currentProcess.componentRegistry");
dumpPathOfProperty ("xpcom.currentProcess.componentDirectory");
dumpPathOfProperty ("system.OS_DriveDirectory");
dumpPathOfProperty ("system.OS_TemporaryDirectory");
dumpPathOfProperty ("system.OS_CurrentProcessDirectory");
dumpPathOfProperty ("system.OS_CurrentWorkingDirectory");
dump("Mac locations::\n");
// Mac
dumpPathOfProperty ("system.SystemDirectory");
dumpPathOfProperty ("system.DesktopDirectory");
dumpPathOfProperty ("system.TrashDirectory");
dumpPathOfProperty ("system.StartupDirectory");
dumpPathOfProperty ("system.ShutdownDirectory");
dumpPathOfProperty ("system.AppleMenuDirectory");
dumpPathOfProperty ("system.ControlPanelDirectory");
dumpPathOfProperty ("system.ExtensionDirectory");
dumpPathOfProperty ("system.FontsDirectory");
dumpPathOfProperty ("system.PreferencesDirectory");
dumpPathOfProperty ("system.DocumentsDirectory");
dumpPathOfProperty ("system.InternetSearchDirectory");
dump("PC locations::\n");
// PC
dumpPathOfProperty ("system.SystemDirectory");
dumpPathOfProperty ("system.WindowsDirectory");
dumpPathOfProperty ("system.HomeDirectory");
dumpPathOfProperty ("system.Desktop");
dumpPathOfProperty ("system.Programs");
dumpPathOfProperty ("system.Controls");
dumpPathOfProperty ("system.Printers");
dumpPathOfProperty ("system.Personal");
dumpPathOfProperty ("system.Favorites");
dumpPathOfProperty ("system.Startup");
dumpPathOfProperty ("system.Recent");
dumpPathOfProperty ("system.Sendto");
dumpPathOfProperty ("system.Bitbucket");
dumpPathOfProperty ("system.Startmenu");
dumpPathOfProperty ("system.Desktopdirectory");
dumpPathOfProperty ("system.Drives");
dumpPathOfProperty ("system.Network");
dumpPathOfProperty ("system.Nethood");
dumpPathOfProperty ("system.Fonts");
dumpPathOfProperty ("system.Templates");
dumpPathOfProperty ("system.Common_Startmenu");
dumpPathOfProperty ("system.Common_Programs");
dumpPathOfProperty ("system.Common_Startup");
dumpPathOfProperty ("system.Common_Desktopdirectory");
dumpPathOfProperty ("system.Appdata");
dumpPathOfProperty ("system.Printhood");
dump("Unix locations::\n");
// Unix
dumpPathOfProperty ("system.LocalDirectory");
dumpPathOfProperty ("system.LibDirectory");
dumpPathOfProperty ("system.HomeDirectory");
dump("Beos locations::\n");
// Beos
dumpPathOfProperty ("system.SettingsDirectory");
dumpPathOfProperty ("system.HomeDirectory");
dumpPathOfProperty ("system.DesktopDirectory");
dumpPathOfProperty ("system.SystemDirectory");
dump("OS2 locations::\n");
// OS2
dumpPathOfProperty ("system.SystemDirectory");
dumpPathOfProperty ("system.OS2Directory");
dumpPathOfProperty ("system.DesktopDirectory");
// XPFE locations:
// application Directories:
dumpPathOfProperty ("app.res.directory");
dumpPathOfProperty ("app.defaults.directory");
dumpPathOfProperty ("app.chrome.directory");
dumpPathOfProperty ("app.chrome.user.directory");
dumpPathOfProperty ("app.plugins.directory");
// application Files:
dumpPathOfProperty ("app.registry.file.4");
dumpPathOfProperty ("app.registry.file.5");
dumpPathOfProperty ("app.local.store.file.5");
dumpPathOfProperty ("app.history.file.5");
dumpPathOfProperty ("app.user.panels.5");
// Preferences:
// dumpPathOfProperty ("app.prefs.directory.3");
// dumpPathOfProperty ("app.prefs.directory.4");
dumpPathOfProperty ("app.prefs.directory.5");
dumpPathOfProperty ("app.pref.default.directory.5");
// dumpPathOfProperty ("app.prefs.file.3");
// dumpPathOfProperty ("app.prefs.file.4");
dumpPathOfProperty ("app.prefs.file.5");
// Profile:
// dumpPathOfProperty ("app.profile.user.directory.3");
// dumpPathOfProperty ("app.profile.user.directory.4");
dumpPathOfProperty ("app.profile.user.directory.5");
// dumpPathOfProperty ("app.profile.default.user.directory.3");
// dumpPathOfProperty ("app.profile.default.user.directory.4");
dumpPathOfProperty ("app.profile.default.user.directory.5");
// dumpPathOfProperty ("app.profile.defaults.directory.3");
// dumpPathOfProperty ("app.profile.defaults.directory.4");
dumpPathOfProperty ("app.profile.defaults.directory.5");
// Bookmarks:
// dumpPathOfProperty ("app.bookmark.file.3");
// dumpPathOfProperty ("app.bookmark.file.4");
dumpPathOfProperty ("app.bookmark.file.5");
// Search
dumpPathOfProperty ("app.search.file.5");
dumpPathOfProperty ("app.search.directory.5");
// MailNews:
dumpPathOfProperty ("app.mail.directory.5");
dumpPathOfProperty ("app.mail.imap.directory.5");
dumpPathOfProperty ("app.mail.news.directory.5");
dumpPathOfProperty ("app.mail.messenger.cache.directory.5");
|