4 * Copyright 1998, 1999, 2000 Juergen Schmied
5 * Copyright 2004 Juan Lang
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 * Many of these functions are in SHLWAPI.DLL also
30 #include "wine/port.h"
36 #include "wine/debug.h"
47 #include "shell32_main.h"
48 #include "undocshell.h"
50 #include "wine/unicode.h"
54 #include "knownfolders.h"
58 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
60 static const BOOL is_win64
= sizeof(void *) > sizeof(int);
63 ########## Combining and Constructing paths ##########
66 /*************************************************************************
67 * PathAppend [SHELL32.36]
69 BOOL WINAPI
PathAppendAW(
73 if (SHELL_OsIsUnicode())
74 return PathAppendW(lpszPath1
, lpszPath2
);
75 return PathAppendA(lpszPath1
, lpszPath2
);
78 /*************************************************************************
79 * PathCombine [SHELL32.37]
81 LPVOID WINAPI
PathCombineAW(
86 if (SHELL_OsIsUnicode())
87 return PathCombineW( szDest
, lpszDir
, lpszFile
);
88 return PathCombineA( szDest
, lpszDir
, lpszFile
);
91 /*************************************************************************
92 * PathAddBackslash [SHELL32.32]
94 LPVOID WINAPI
PathAddBackslashAW(LPVOID lpszPath
)
96 if(SHELL_OsIsUnicode())
97 return PathAddBackslashW(lpszPath
);
98 return PathAddBackslashA(lpszPath
);
101 /*************************************************************************
102 * PathBuildRoot [SHELL32.30]
104 LPVOID WINAPI
PathBuildRootAW(LPVOID lpszPath
, int drive
)
106 if(SHELL_OsIsUnicode())
107 return PathBuildRootW(lpszPath
, drive
);
108 return PathBuildRootA(lpszPath
, drive
);
112 Extracting Component Parts
115 /*************************************************************************
116 * PathFindFileName [SHELL32.34]
118 LPVOID WINAPI
PathFindFileNameAW(LPCVOID lpszPath
)
120 if(SHELL_OsIsUnicode())
121 return PathFindFileNameW(lpszPath
);
122 return PathFindFileNameA(lpszPath
);
125 /*************************************************************************
126 * PathFindExtension [SHELL32.31]
128 LPVOID WINAPI
PathFindExtensionAW(LPCVOID lpszPath
)
130 if (SHELL_OsIsUnicode())
131 return PathFindExtensionW(lpszPath
);
132 return PathFindExtensionA(lpszPath
);
136 /*************************************************************************
137 * PathGetExtensionA [internal]
140 * exported by ordinal
141 * return value points to the first char after the dot
143 static LPSTR
PathGetExtensionA(LPCSTR lpszPath
)
145 TRACE("(%s)\n",lpszPath
);
147 lpszPath
= PathFindExtensionA(lpszPath
);
148 return (LPSTR
)(*lpszPath
?(lpszPath
+1):lpszPath
);
151 /*************************************************************************
152 * PathGetExtensionW [internal]
154 static LPWSTR
PathGetExtensionW(LPCWSTR lpszPath
)
156 TRACE("(%s)\n",debugstr_w(lpszPath
));
158 lpszPath
= PathFindExtensionW(lpszPath
);
159 return (LPWSTR
)(*lpszPath
?(lpszPath
+1):lpszPath
);
162 /*************************************************************************
163 * PathGetExtension [SHELL32.158]
165 LPVOID WINAPI
PathGetExtensionAW(LPCVOID lpszPath
,DWORD void1
, DWORD void2
)
167 if (SHELL_OsIsUnicode())
168 return PathGetExtensionW(lpszPath
);
169 return PathGetExtensionA(lpszPath
);
172 /*************************************************************************
173 * PathGetArgs [SHELL32.52]
175 LPVOID WINAPI
PathGetArgsAW(LPVOID lpszPath
)
177 if (SHELL_OsIsUnicode())
178 return PathGetArgsW(lpszPath
);
179 return PathGetArgsA(lpszPath
);
182 /*************************************************************************
183 * PathGetDriveNumber [SHELL32.57]
185 int WINAPI
PathGetDriveNumberAW(LPVOID lpszPath
)
187 if (SHELL_OsIsUnicode())
188 return PathGetDriveNumberW(lpszPath
);
189 return PathGetDriveNumberA(lpszPath
);
192 /*************************************************************************
193 * PathRemoveFileSpec [SHELL32.35]
195 BOOL WINAPI
PathRemoveFileSpecAW(LPVOID lpszPath
)
197 if (SHELL_OsIsUnicode())
198 return PathRemoveFileSpecW(lpszPath
);
199 return PathRemoveFileSpecA(lpszPath
);
202 /*************************************************************************
203 * PathStripPath [SHELL32.38]
205 void WINAPI
PathStripPathAW(LPVOID lpszPath
)
207 if (SHELL_OsIsUnicode())
208 PathStripPathW(lpszPath
);
210 PathStripPathA(lpszPath
);
213 /*************************************************************************
214 * PathStripToRoot [SHELL32.50]
216 BOOL WINAPI
PathStripToRootAW(LPVOID lpszPath
)
218 if (SHELL_OsIsUnicode())
219 return PathStripToRootW(lpszPath
);
220 return PathStripToRootA(lpszPath
);
223 /*************************************************************************
224 * PathRemoveArgs [SHELL32.251]
226 void WINAPI
PathRemoveArgsAW(LPVOID lpszPath
)
228 if (SHELL_OsIsUnicode())
229 PathRemoveArgsW(lpszPath
);
231 PathRemoveArgsA(lpszPath
);
234 /*************************************************************************
235 * PathRemoveExtension [SHELL32.250]
237 void WINAPI
PathRemoveExtensionAW(LPVOID lpszPath
)
239 if (SHELL_OsIsUnicode())
240 PathRemoveExtensionW(lpszPath
);
242 PathRemoveExtensionA(lpszPath
);
250 /*************************************************************************
251 * PathGetShortPathA [internal]
253 static void PathGetShortPathA(LPSTR pszPath
)
257 TRACE("%s\n", pszPath
);
259 if (GetShortPathNameA(pszPath
, path
, MAX_PATH
))
261 lstrcpyA(pszPath
, path
);
265 /*************************************************************************
266 * PathGetShortPathW [internal]
268 static void PathGetShortPathW(LPWSTR pszPath
)
270 WCHAR path
[MAX_PATH
];
272 TRACE("%s\n", debugstr_w(pszPath
));
274 if (GetShortPathNameW(pszPath
, path
, MAX_PATH
))
276 lstrcpyW(pszPath
, path
);
280 /*************************************************************************
281 * PathGetShortPath [SHELL32.92]
283 VOID WINAPI
PathGetShortPathAW(LPVOID pszPath
)
285 if(SHELL_OsIsUnicode())
286 PathGetShortPathW(pszPath
);
287 PathGetShortPathA(pszPath
);
290 /*************************************************************************
291 * PathRemoveBlanks [SHELL32.33]
293 void WINAPI
PathRemoveBlanksAW(LPVOID str
)
295 if(SHELL_OsIsUnicode())
296 PathRemoveBlanksW(str
);
298 PathRemoveBlanksA(str
);
301 /*************************************************************************
302 * PathQuoteSpaces [SHELL32.55]
304 VOID WINAPI
PathQuoteSpacesAW (LPVOID lpszPath
)
306 if(SHELL_OsIsUnicode())
307 PathQuoteSpacesW(lpszPath
);
309 PathQuoteSpacesA(lpszPath
);
312 /*************************************************************************
313 * PathUnquoteSpaces [SHELL32.56]
315 VOID WINAPI
PathUnquoteSpacesAW(LPVOID str
)
317 if(SHELL_OsIsUnicode())
318 PathUnquoteSpacesW(str
);
320 PathUnquoteSpacesA(str
);
323 /*************************************************************************
324 * PathParseIconLocation [SHELL32.249]
326 int WINAPI
PathParseIconLocationAW (LPVOID lpszPath
)
328 if(SHELL_OsIsUnicode())
329 return PathParseIconLocationW(lpszPath
);
330 return PathParseIconLocationA(lpszPath
);
334 ########## Path Testing ##########
336 /*************************************************************************
337 * PathIsUNC [SHELL32.39]
339 BOOL WINAPI
PathIsUNCAW (LPCVOID lpszPath
)
341 if (SHELL_OsIsUnicode())
342 return PathIsUNCW( lpszPath
);
343 return PathIsUNCA( lpszPath
);
346 /*************************************************************************
347 * PathIsRelative [SHELL32.40]
349 BOOL WINAPI
PathIsRelativeAW (LPCVOID lpszPath
)
351 if (SHELL_OsIsUnicode())
352 return PathIsRelativeW( lpszPath
);
353 return PathIsRelativeA( lpszPath
);
356 /*************************************************************************
357 * PathIsRoot [SHELL32.29]
359 BOOL WINAPI
PathIsRootAW(LPCVOID lpszPath
)
361 if (SHELL_OsIsUnicode())
362 return PathIsRootW(lpszPath
);
363 return PathIsRootA(lpszPath
);
366 /*************************************************************************
367 * PathIsExeA [internal]
369 static BOOL
PathIsExeA (LPCSTR lpszPath
)
371 LPCSTR lpszExtension
= PathGetExtensionA(lpszPath
);
373 static const char * const lpszExtensions
[] =
374 {"exe", "com", "pif", "cmd", "bat", "scf", "scr", NULL
};
376 TRACE("path=%s\n",lpszPath
);
378 for(i
=0; lpszExtensions
[i
]; i
++)
379 if (!lstrcmpiA(lpszExtension
,lpszExtensions
[i
])) return TRUE
;
384 /*************************************************************************
385 * PathIsExeW [internal]
387 static BOOL
PathIsExeW (LPCWSTR lpszPath
)
389 LPCWSTR lpszExtension
= PathGetExtensionW(lpszPath
);
391 static const WCHAR lpszExtensions
[][4] =
392 {{'e','x','e','\0'}, {'c','o','m','\0'}, {'p','i','f','\0'},
393 {'c','m','d','\0'}, {'b','a','t','\0'}, {'s','c','f','\0'},
394 {'s','c','r','\0'}, {'\0'} };
396 TRACE("path=%s\n",debugstr_w(lpszPath
));
398 for(i
=0; lpszExtensions
[i
][0]; i
++)
399 if (!strcmpiW(lpszExtension
,lpszExtensions
[i
])) return TRUE
;
404 /*************************************************************************
405 * PathIsExe [SHELL32.43]
407 BOOL WINAPI
PathIsExeAW (LPCVOID path
)
409 if (SHELL_OsIsUnicode())
410 return PathIsExeW (path
);
411 return PathIsExeA(path
);
414 /*************************************************************************
415 * PathIsDirectory [SHELL32.159]
417 BOOL WINAPI
PathIsDirectoryAW (LPCVOID lpszPath
)
419 if (SHELL_OsIsUnicode())
420 return PathIsDirectoryW (lpszPath
);
421 return PathIsDirectoryA (lpszPath
);
424 /*************************************************************************
425 * PathFileExists [SHELL32.45]
427 BOOL WINAPI
PathFileExistsAW (LPCVOID lpszPath
)
429 if (SHELL_OsIsUnicode())
430 return PathFileExistsW (lpszPath
);
431 return PathFileExistsA (lpszPath
);
434 /*************************************************************************
435 * PathMatchSpec [SHELL32.46]
437 BOOL WINAPI
PathMatchSpecAW(LPVOID name
, LPVOID mask
)
439 if (SHELL_OsIsUnicode())
440 return PathMatchSpecW( name
, mask
);
441 return PathMatchSpecA( name
, mask
);
444 /*************************************************************************
445 * PathIsSameRoot [SHELL32.650]
447 BOOL WINAPI
PathIsSameRootAW(LPCVOID lpszPath1
, LPCVOID lpszPath2
)
449 if (SHELL_OsIsUnicode())
450 return PathIsSameRootW(lpszPath1
, lpszPath2
);
451 return PathIsSameRootA(lpszPath1
, lpszPath2
);
454 /*************************************************************************
455 * IsLFNDriveA [SHELL32.41]
457 BOOL WINAPI
IsLFNDriveA(LPCSTR lpszPath
)
461 if (!GetVolumeInformationA(lpszPath
, NULL
, 0, NULL
, &fnlen
, NULL
, NULL
, 0))
466 /*************************************************************************
467 * IsLFNDriveW [SHELL32.42]
469 BOOL WINAPI
IsLFNDriveW(LPCWSTR lpszPath
)
473 if (!GetVolumeInformationW(lpszPath
, NULL
, 0, NULL
, &fnlen
, NULL
, NULL
, 0))
478 /*************************************************************************
479 * IsLFNDrive [SHELL32.119]
481 BOOL WINAPI
IsLFNDriveAW(LPCVOID lpszPath
)
483 if (SHELL_OsIsUnicode())
484 return IsLFNDriveW(lpszPath
);
485 return IsLFNDriveA(lpszPath
);
489 ########## Creating Something Unique ##########
491 /*************************************************************************
492 * PathMakeUniqueNameA [internal]
494 static BOOL
PathMakeUniqueNameA(
497 LPCSTR lpszShortName
,
501 FIXME("%p %u %s %s %s stub\n",
502 lpszBuffer
, dwBuffSize
, debugstr_a(lpszShortName
),
503 debugstr_a(lpszLongName
), debugstr_a(lpszPathName
));
507 /*************************************************************************
508 * PathMakeUniqueNameW [internal]
510 static BOOL
PathMakeUniqueNameW(
513 LPCWSTR lpszShortName
,
514 LPCWSTR lpszLongName
,
515 LPCWSTR lpszPathName
)
517 FIXME("%p %u %s %s %s stub\n",
518 lpszBuffer
, dwBuffSize
, debugstr_w(lpszShortName
),
519 debugstr_w(lpszLongName
), debugstr_w(lpszPathName
));
523 /*************************************************************************
524 * PathMakeUniqueName [SHELL32.47]
526 BOOL WINAPI
PathMakeUniqueNameAW(
529 LPCVOID lpszShortName
,
530 LPCVOID lpszLongName
,
531 LPCVOID lpszPathName
)
533 if (SHELL_OsIsUnicode())
534 return PathMakeUniqueNameW(lpszBuffer
,dwBuffSize
, lpszShortName
,lpszLongName
,lpszPathName
);
535 return PathMakeUniqueNameA(lpszBuffer
,dwBuffSize
, lpszShortName
,lpszLongName
,lpszPathName
);
538 /*************************************************************************
539 * PathYetAnotherMakeUniqueName [SHELL32.75]
542 * exported by ordinal
544 BOOL WINAPI
PathYetAnotherMakeUniqueName(
546 LPCWSTR lpszPathName
,
547 LPCWSTR lpszShortName
,
548 LPCWSTR lpszLongName
)
550 FIXME("(%p, %s, %s ,%s):stub.\n",
551 lpszBuffer
, debugstr_w(lpszPathName
), debugstr_w(lpszShortName
), debugstr_w(lpszLongName
));
557 ########## cleaning and resolving paths ##########
560 /*************************************************************************
561 * PathFindOnPath [SHELL32.145]
563 BOOL WINAPI
PathFindOnPathAW(LPVOID sFile
, LPCVOID
*sOtherDirs
)
565 if (SHELL_OsIsUnicode())
566 return PathFindOnPathW(sFile
, (LPCWSTR
*)sOtherDirs
);
567 return PathFindOnPathA(sFile
, (LPCSTR
*)sOtherDirs
);
570 /*************************************************************************
571 * PathCleanupSpec [SHELL32.171]
573 * lpszFile is changed in place.
575 int WINAPI
PathCleanupSpec( LPCWSTR lpszPathW
, LPWSTR lpszFileW
)
581 if (SHELL_OsIsUnicode())
583 LPWSTR p
= lpszFileW
;
585 TRACE("Cleanup %s\n",debugstr_w(lpszFileW
));
588 length
= strlenW(lpszPathW
);
592 int gct
= PathGetCharTypeW(*p
);
593 if (gct
== GCT_INVALID
|| gct
== GCT_WILD
|| gct
== GCT_SEPARATOR
)
596 rc
|= PCS_REPLACEDCHAR
;
602 if (length
+ i
== MAX_PATH
)
604 rc
|= PCS_FATAL
| PCS_PATHTOOLONG
;
612 LPSTR lpszFileA
= (LPSTR
)lpszFileW
;
613 LPCSTR lpszPathA
= (LPCSTR
)lpszPathW
;
616 TRACE("Cleanup %s\n",debugstr_a(lpszFileA
));
619 length
= strlen(lpszPathA
);
623 int gct
= PathGetCharTypeA(*p
);
624 if (gct
== GCT_INVALID
|| gct
== GCT_WILD
|| gct
== GCT_SEPARATOR
)
627 rc
|= PCS_REPLACEDCHAR
;
633 if (length
+ i
== MAX_PATH
)
635 rc
|= PCS_FATAL
| PCS_PATHTOOLONG
;
644 /*************************************************************************
645 * PathQualifyA [SHELL32]
647 static BOOL
PathQualifyA(LPCSTR pszPath
)
649 FIXME("%s\n",pszPath
);
653 /*************************************************************************
654 * PathQualifyW [SHELL32]
656 static BOOL
PathQualifyW(LPCWSTR pszPath
)
658 FIXME("%s\n",debugstr_w(pszPath
));
662 /*************************************************************************
663 * PathQualify [SHELL32.49]
665 BOOL WINAPI
PathQualifyAW(LPCVOID pszPath
)
667 if (SHELL_OsIsUnicode())
668 return PathQualifyW(pszPath
);
669 return PathQualifyA(pszPath
);
672 static BOOL
PathResolveA(LPSTR path
, LPCSTR
*paths
, DWORD flags
)
674 FIXME("(%s,%p,0x%08x),stub!\n", debugstr_a(path
), paths
, flags
);
678 static BOOL
PathResolveW(LPWSTR path
, LPCWSTR
*paths
, DWORD flags
)
680 FIXME("(%s,%p,0x%08x),stub!\n", debugstr_w(path
), paths
, flags
);
684 /*************************************************************************
685 * PathResolve [SHELL32.51]
687 BOOL WINAPI
PathResolveAW(LPVOID path
, LPCVOID
*paths
, DWORD flags
)
689 if (SHELL_OsIsUnicode())
690 return PathResolveW(path
, (LPCWSTR
*)paths
, flags
);
692 return PathResolveA(path
, (LPCSTR
*)paths
, flags
);
695 /*************************************************************************
696 * PathProcessCommandA
698 static LONG
PathProcessCommandA (
704 FIXME("%s %p 0x%04x 0x%04x stub\n",
705 lpszPath
, lpszBuff
, dwBuffSize
, dwFlags
);
706 if(!lpszPath
) return -1;
707 if(lpszBuff
) strcpy(lpszBuff
, lpszPath
);
708 return strlen(lpszPath
);
711 /*************************************************************************
712 * PathProcessCommandW
714 static LONG
PathProcessCommandW (
720 FIXME("(%s, %p, 0x%04x, 0x%04x) stub\n",
721 debugstr_w(lpszPath
), lpszBuff
, dwBuffSize
, dwFlags
);
722 if(!lpszPath
) return -1;
723 if(lpszBuff
) strcpyW(lpszBuff
, lpszPath
);
724 return strlenW(lpszPath
);
727 /*************************************************************************
728 * PathProcessCommand (SHELL32.653)
730 LONG WINAPI
PathProcessCommandAW (
736 if (SHELL_OsIsUnicode())
737 return PathProcessCommandW(lpszPath
, lpszBuff
, dwBuffSize
, dwFlags
);
738 return PathProcessCommandA(lpszPath
, lpszBuff
, dwBuffSize
, dwFlags
);
742 ########## special ##########
745 /*************************************************************************
746 * PathSetDlgItemPath (SHELL32.48)
748 VOID WINAPI
PathSetDlgItemPathAW(HWND hDlg
, int id
, LPCVOID pszPath
)
750 if (SHELL_OsIsUnicode())
751 PathSetDlgItemPathW(hDlg
, id
, pszPath
);
753 PathSetDlgItemPathA(hDlg
, id
, pszPath
);
756 static const WCHAR szCurrentVersion
[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\0'};
757 static const WCHAR Administrative_ToolsW
[] = {'A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
758 static const WCHAR AppDataW
[] = {'A','p','p','D','a','t','a','\0'};
759 static const WCHAR AppData_LocalLowW
[] = {'A','p','p','D','a','t','a','\\','L','o','c','a','l','L','o','w','\0'};
760 static const WCHAR Application_DataW
[] = {'A','p','p','l','i','c','a','t','i','o','n',' ','D','a','t','a','\0'};
761 static const WCHAR CacheW
[] = {'C','a','c','h','e','\0'};
762 static const WCHAR CD_BurningW
[] = {'C','D',' ','B','u','r','n','i','n','g','\0'};
763 static const WCHAR Common_Administrative_ToolsW
[] = {'C','o','m','m','o','n',' ','A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
764 static const WCHAR Common_AppDataW
[] = {'C','o','m','m','o','n',' ','A','p','p','D','a','t','a','\0'};
765 static const WCHAR Common_DesktopW
[] = {'C','o','m','m','o','n',' ','D','e','s','k','t','o','p','\0'};
766 static const WCHAR Common_DocumentsW
[] = {'C','o','m','m','o','n',' ','D','o','c','u','m','e','n','t','s','\0'};
767 static const WCHAR Common_FavoritesW
[] = {'C','o','m','m','o','n',' ','F','a','v','o','r','i','t','e','s','\0'};
768 static const WCHAR CommonFilesDirW
[] = {'C','o','m','m','o','n','F','i','l','e','s','D','i','r','\0'};
769 static const WCHAR CommonFilesDirX86W
[] = {'C','o','m','m','o','n','F','i','l','e','s','D','i','r',' ','(','x','8','6',')','\0'};
770 static const WCHAR CommonMusicW
[] = {'C','o','m','m','o','n','M','u','s','i','c','\0'};
771 static const WCHAR CommonPicturesW
[] = {'C','o','m','m','o','n','P','i','c','t','u','r','e','s','\0'};
772 static const WCHAR Common_ProgramsW
[] = {'C','o','m','m','o','n',' ','P','r','o','g','r','a','m','s','\0'};
773 static const WCHAR Common_StartUpW
[] = {'C','o','m','m','o','n',' ','S','t','a','r','t','U','p','\0'};
774 static const WCHAR Common_Start_MenuW
[] = {'C','o','m','m','o','n',' ','S','t','a','r','t',' ','M','e','n','u','\0'};
775 static const WCHAR Common_TemplatesW
[] = {'C','o','m','m','o','n',' ','T','e','m','p','l','a','t','e','s','\0'};
776 static const WCHAR CommonVideoW
[] = {'C','o','m','m','o','n','V','i','d','e','o','\0'};
777 static const WCHAR ContactsW
[] = {'C','o','n','t','a','c','t','s','\0'};
778 static const WCHAR CookiesW
[] = {'C','o','o','k','i','e','s','\0'};
779 static const WCHAR DesktopW
[] = {'D','e','s','k','t','o','p','\0'};
780 static const WCHAR DocumentsW
[] = {'D','o','c','u','m','e','n','t','s','\0'};
781 static const WCHAR DownloadsW
[] = {'D','o','w','n','l','o','a','d','s','\0'};
782 static const WCHAR FavoritesW
[] = {'F','a','v','o','r','i','t','e','s','\0'};
783 static const WCHAR FontsW
[] = {'F','o','n','t','s','\0'};
784 static const WCHAR HistoryW
[] = {'H','i','s','t','o','r','y','\0'};
785 static const WCHAR LinksW
[] = {'L','i','n','k','s','\0'};
786 static const WCHAR Local_AppDataW
[] = {'L','o','c','a','l',' ','A','p','p','D','a','t','a','\0'};
787 static const WCHAR Local_Settings_Application_DataW
[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','A','p','p','l','i','c','a','t','i','o','n',' ','D','a','t','a','\0'};
788 static const WCHAR Local_Settings_CD_BurningW
[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','A','p','p','l','i','c','a','t','i','o','n',' ','D','a','t','a','\\','M','i','c','r','o','s','o','f','t','\\','C','D',' ','B','u','r','n','i','n','g','\0'};
789 static const WCHAR Local_Settings_HistoryW
[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','H','i','s','t','o','r','y','\0'};
790 static const WCHAR Local_Settings_Temporary_Internet_FilesW
[] = {'L','o','c','a','l',' ','S','e','t','t','i','n','g','s','\\','T','e','m','p','o','r','a','r','y',' ','I','n','t','e','r','n','e','t',' ','F','i','l','e','s','\0'};
791 static const WCHAR Microsoft_Windows_GameExplorerW
[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','G','a','m','e','E','x','p','l','o','r','e','r','\0'};
792 static const WCHAR Microsoft_Windows_LibrariesW
[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','L','i','b','r','a','r','i','e','s','\0'};
793 static const WCHAR Microsoft_Windows_RingtonesW
[] = {'M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','R','i','n','g','t','o','n','e','s','\0'};
794 static const WCHAR MusicW
[] = {'M','u','s','i','c','\0'};
795 static const WCHAR Music_PlaylistsW
[] = {'M','u','s','i','c','\\','P','l','a','y','l','i','s','t','s','\0'};
796 static const WCHAR Music_Sample_MusicW
[] = {'M','u','s','i','c','\\','S','a','m','p','l','e',' ','M','u','s','i','c','\0'};
797 static const WCHAR Music_Sample_PlaylistsW
[] = {'M','u','s','i','c','\\','S','a','m','p','l','e',' ','P','l','a','y','l','i','s','t','s','\0'};
798 static const WCHAR My_DocumentsW
[] = {'M','y',' ','D','o','c','u','m','e','n','t','s','\0'};
799 static const WCHAR My_MusicW
[] = {'M','y',' ','M','u','s','i','c','\0'};
800 static const WCHAR My_PicturesW
[] = {'M','y',' ','P','i','c','t','u','r','e','s','\0'};
801 static const WCHAR My_VideosW
[] = {'M','y',' ','V','i','d','e','o','s','\0'};
802 static const WCHAR NetHoodW
[] = {'N','e','t','H','o','o','d','\0'};
803 static const WCHAR OEM_LinksW
[] = {'O','E','M',' ','L','i','n','k','s','\0'};
804 static const WCHAR PersonalW
[] = {'P','e','r','s','o','n','a','l','\0'};
805 static const WCHAR PicturesW
[] = {'P','i','c','t','u','r','e','s','\0'};
806 static const WCHAR Pictures_Sample_PicturesW
[] = {'P','i','c','t','u','r','e','s','\\','S','a','m','p','l','e',' ','P','i','c','t','u','r','e','s','\0'};
807 static const WCHAR Pictures_Slide_ShowsW
[] = {'P','i','c','t','u','r','e','s','\\','S','l','i','d','e',' ','S','h','o','w','s','\0'};
808 static const WCHAR PrintHoodW
[] = {'P','r','i','n','t','H','o','o','d','\0'};
809 static const WCHAR Program_FilesW
[] = {'P','r','o','g','r','a','m',' ','F','i','l','e','s','\0'};
810 static const WCHAR Program_Files_Common_FilesW
[] = {'P','r','o','g','r','a','m',' ','F','i','l','e','s','\\','C','o','m','m','o','n',' ','F','i','l','e','s','\0'};
811 static const WCHAR Program_Files_x86W
[] = {'P','r','o','g','r','a','m',' ','F','i','l','e','s',' ','(','x','8','6',')','\0'};
812 static const WCHAR Program_Files_x86_Common_FilesW
[] = {'P','r','o','g','r','a','m',' ','F','i','l','e','s',' ','(','x','8','6',')','\\','C','o','m','m','o','n',' ','F','i','l','e','s','\0'};
813 static const WCHAR ProgramFilesDirW
[] = {'P','r','o','g','r','a','m','F','i','l','e','s','D','i','r','\0'};
814 static const WCHAR ProgramFilesDirX86W
[] = {'P','r','o','g','r','a','m','F','i','l','e','s','D','i','r',' ','(','x','8','6',')','\0'};
815 static const WCHAR ProgramsW
[] = {'P','r','o','g','r','a','m','s','\0'};
816 static const WCHAR RecentW
[] = {'R','e','c','e','n','t','\0'};
817 static const WCHAR ResourcesW
[] = {'R','e','s','o','u','r','c','e','s','\0'};
818 static const WCHAR Saved_GamesW
[] = {'S','a','v','e','d',' ','G','a','m','e','s','\0'};
819 static const WCHAR SearchesW
[] = {'S','e','a','r','c','h','e','s','\0'};
820 static const WCHAR SendToW
[] = {'S','e','n','d','T','o','\0'};
821 static const WCHAR StartUpW
[] = {'S','t','a','r','t','U','p','\0'};
822 static const WCHAR Start_MenuW
[] = {'S','t','a','r','t',' ','M','e','n','u','\0'};
823 static const WCHAR Start_Menu_ProgramsW
[] = {'S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\0'};
824 static const WCHAR Start_Menu_Admin_ToolsW
[] = {'S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','A','d','m','i','n','i','s','t','r','a','t','i','v','e',' ','T','o','o','l','s','\0'};
825 static const WCHAR Start_Menu_StartupW
[] = {'S','t','a','r','t',' ','M','e','n','u','\\','P','r','o','g','r','a','m','s','\\','S','t','a','r','t','U','p','\0'};
826 static const WCHAR TemplatesW
[] = {'T','e','m','p','l','a','t','e','s','\0'};
827 static const WCHAR UsersW
[] = {'U','s','e','r','s','\0'};
828 static const WCHAR UsersPublicW
[] = {'U','s','e','r','s','\\','P','u','b','l','i','c','\0'};
829 static const WCHAR VideosW
[] = {'V','i','d','e','o','s','\0'};
830 static const WCHAR Videos_Sample_VideosW
[] = {'V','i','d','e','o','s','\\','S','a','m','p','l','e',' ','V','i','d','e','o','s','\0'};
831 static const WCHAR DefaultW
[] = {'.','D','e','f','a','u','l','t','\0'};
832 static const WCHAR AllUsersProfileW
[] = {'%','A','L','L','U','S','E','R','S','P','R','O','F','I','L','E','%','\0'};
833 static const WCHAR UserProfileW
[] = {'%','U','S','E','R','P','R','O','F','I','L','E','%','\0'};
834 static const WCHAR SystemDriveW
[] = {'%','S','y','s','t','e','m','D','r','i','v','e','%','\0'};
835 static const WCHAR ProfileListW
[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s',' ','N','T','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','P','r','o','f','i','l','e','L','i','s','t',0};
836 static const WCHAR ProfilesDirectoryW
[] = {'P','r','o','f','i','l','e','s','D','i','r','e','c','t','o','r','y',0};
837 static const WCHAR AllUsersProfileValueW
[] = {'A','l','l','U','s','e','r','s','P','r','o','f','i','l','e','\0'};
838 static const WCHAR szSHFolders
[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l','o','r','e','r','\\','S','h','e','l','l',' ','F','o','l','d','e','r','s','\0'};
839 static const WCHAR szSHUserFolders
[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l','o','r','e','r','\\','U','s','e','r',' ','S','h','e','l','l',' ','F','o','l','d','e','r','s','\0'};
840 static const WCHAR szDefaultProfileDirW
[] = {'u','s','e','r','s',0};
841 static const WCHAR szKnownFolderDescriptions
[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l','o','r','e','r','\\','F','o','l','d','e','r','D','e','s','c','r','i','p','t','i','o','n','s','\0'};
842 static const WCHAR szKnownFolderRedirections
[] = {'S','o','f','t','w','a','r','e','\\','M','i','c','r','o','s','o','f','t','\\','W','i','n','d','o','w','s','\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\','E','x','p','l','o','r','e','r','\\','U','s','e','r',' ','S','h','e','l','l',' ','F','o','l','d','e','r','s',0};
843 static const WCHAR AllUsersW
[] = {'P','u','b','l','i','c',0};
845 typedef enum _CSIDL_Type
{
849 CSIDL_Type_Disallowed
,
850 CSIDL_Type_NonExistent
,
851 CSIDL_Type_WindowsPath
,
852 CSIDL_Type_SystemPath
,
853 CSIDL_Type_SystemX86Path
,
858 const KNOWNFOLDERID
*id
;
861 LPCWSTR szDefaultPath
; /* fallback string or resource ID */
864 static const CSIDL_DATA CSIDL_Data
[] =
866 { /* 0x00 - CSIDL_DESKTOP */
870 MAKEINTRESOURCEW(IDS_DESKTOPDIRECTORY
)
872 { /* 0x01 - CSIDL_INTERNET */
873 &FOLDERID_InternetFolder
,
874 CSIDL_Type_Disallowed
,
878 { /* 0x02 - CSIDL_PROGRAMS */
884 { /* 0x03 - CSIDL_CONTROLS (.CPL files) */
885 &FOLDERID_ControlPanelFolder
,
886 CSIDL_Type_SystemPath
,
890 { /* 0x04 - CSIDL_PRINTERS */
891 &FOLDERID_PrintersFolder
,
892 CSIDL_Type_SystemPath
,
896 { /* 0x05 - CSIDL_PERSONAL */
900 MAKEINTRESOURCEW(IDS_PERSONAL
)
902 { /* 0x06 - CSIDL_FAVORITES */
908 { /* 0x07 - CSIDL_STARTUP */
914 { /* 0x08 - CSIDL_RECENT */
920 { /* 0x09 - CSIDL_SENDTO */
926 { /* 0x0a - CSIDL_BITBUCKET - Recycle Bin */
927 &FOLDERID_RecycleBinFolder
,
928 CSIDL_Type_Disallowed
,
932 { /* 0x0b - CSIDL_STARTMENU */
938 { /* 0x0c - CSIDL_MYDOCUMENTS */
940 CSIDL_Type_Disallowed
, /* matches WinXP--can't get its path */
944 { /* 0x0d - CSIDL_MYMUSIC */
948 MAKEINTRESOURCEW(IDS_MYMUSIC
)
950 { /* 0x0e - CSIDL_MYVIDEO */
954 MAKEINTRESOURCEW(IDS_MYVIDEOS
)
956 { /* 0x0f - unassigned */
958 CSIDL_Type_Disallowed
,
962 { /* 0x10 - CSIDL_DESKTOPDIRECTORY */
966 MAKEINTRESOURCEW(IDS_DESKTOPDIRECTORY
)
968 { /* 0x11 - CSIDL_DRIVES */
969 &FOLDERID_ComputerFolder
,
970 CSIDL_Type_Disallowed
,
974 { /* 0x12 - CSIDL_NETWORK */
975 &FOLDERID_NetworkFolder
,
976 CSIDL_Type_Disallowed
,
980 { /* 0x13 - CSIDL_NETHOOD */
986 { /* 0x14 - CSIDL_FONTS */
988 CSIDL_Type_WindowsPath
,
992 { /* 0x15 - CSIDL_TEMPLATES */
998 { /* 0x16 - CSIDL_COMMON_STARTMENU */
999 &FOLDERID_CommonStartMenu
,
1000 CSIDL_Type_AllUsers
,
1004 { /* 0x17 - CSIDL_COMMON_PROGRAMS */
1005 &FOLDERID_CommonPrograms
,
1006 CSIDL_Type_AllUsers
,
1008 Start_Menu_ProgramsW
1010 { /* 0x18 - CSIDL_COMMON_STARTUP */
1011 &FOLDERID_CommonStartup
,
1012 CSIDL_Type_AllUsers
,
1016 { /* 0x19 - CSIDL_COMMON_DESKTOPDIRECTORY */
1017 &FOLDERID_PublicDesktop
,
1018 CSIDL_Type_AllUsers
,
1020 MAKEINTRESOURCEW(IDS_DESKTOPDIRECTORY
)
1022 { /* 0x1a - CSIDL_APPDATA */
1023 &FOLDERID_RoamingAppData
,
1028 { /* 0x1b - CSIDL_PRINTHOOD */
1029 &FOLDERID_PrintHood
,
1034 { /* 0x1c - CSIDL_LOCAL_APPDATA */
1035 &FOLDERID_LocalAppData
,
1038 Local_Settings_Application_DataW
1040 { /* 0x1d - CSIDL_ALTSTARTUP */
1042 CSIDL_Type_NonExistent
,
1046 { /* 0x1e - CSIDL_COMMON_ALTSTARTUP */
1048 CSIDL_Type_NonExistent
,
1052 { /* 0x1f - CSIDL_COMMON_FAVORITES */
1053 &FOLDERID_Favorites
,
1054 CSIDL_Type_AllUsers
,
1058 { /* 0x20 - CSIDL_INTERNET_CACHE */
1059 &FOLDERID_InternetCache
,
1062 Local_Settings_Temporary_Internet_FilesW
1064 { /* 0x21 - CSIDL_COOKIES */
1070 { /* 0x22 - CSIDL_HISTORY */
1074 Local_Settings_HistoryW
1076 { /* 0x23 - CSIDL_COMMON_APPDATA */
1077 &FOLDERID_ProgramData
,
1078 CSIDL_Type_AllUsers
,
1082 { /* 0x24 - CSIDL_WINDOWS */
1084 CSIDL_Type_WindowsPath
,
1088 { /* 0x25 - CSIDL_SYSTEM */
1090 CSIDL_Type_SystemPath
,
1094 { /* 0x26 - CSIDL_PROGRAM_FILES */
1095 &FOLDERID_ProgramFiles
,
1100 { /* 0x27 - CSIDL_MYPICTURES */
1104 MAKEINTRESOURCEW(IDS_MYPICTURES
)
1106 { /* 0x28 - CSIDL_PROFILE */
1112 { /* 0x29 - CSIDL_SYSTEMX86 */
1113 &FOLDERID_SystemX86
,
1114 CSIDL_Type_SystemX86Path
,
1118 { /* 0x2a - CSIDL_PROGRAM_FILESX86 */
1119 &FOLDERID_ProgramFilesX86
,
1121 ProgramFilesDirX86W
,
1124 { /* 0x2b - CSIDL_PROGRAM_FILES_COMMON */
1125 &FOLDERID_ProgramFilesCommon
,
1128 Program_Files_Common_FilesW
1130 { /* 0x2c - CSIDL_PROGRAM_FILES_COMMONX86 */
1131 &FOLDERID_ProgramFilesCommonX86
,
1134 Program_Files_x86_Common_FilesW
1136 { /* 0x2d - CSIDL_COMMON_TEMPLATES */
1137 &FOLDERID_CommonTemplates
,
1138 CSIDL_Type_AllUsers
,
1142 { /* 0x2e - CSIDL_COMMON_DOCUMENTS */
1143 &FOLDERID_PublicDocuments
,
1144 CSIDL_Type_AllUsers
,
1148 { /* 0x2f - CSIDL_COMMON_ADMINTOOLS */
1149 &FOLDERID_CommonAdminTools
,
1150 CSIDL_Type_AllUsers
,
1151 Common_Administrative_ToolsW
,
1152 Start_Menu_Admin_ToolsW
1154 { /* 0x30 - CSIDL_ADMINTOOLS */
1155 &FOLDERID_AdminTools
,
1157 Administrative_ToolsW
,
1158 Start_Menu_Admin_ToolsW
1160 { /* 0x31 - CSIDL_CONNECTIONS */
1161 &FOLDERID_ConnectionsFolder
,
1162 CSIDL_Type_Disallowed
,
1166 { /* 0x32 - unassigned */
1168 CSIDL_Type_Disallowed
,
1172 { /* 0x33 - unassigned */
1174 CSIDL_Type_Disallowed
,
1178 { /* 0x34 - unassigned */
1180 CSIDL_Type_Disallowed
,
1184 { /* 0x35 - CSIDL_COMMON_MUSIC */
1185 &FOLDERID_PublicMusic
,
1186 CSIDL_Type_AllUsers
,
1190 { /* 0x36 - CSIDL_COMMON_PICTURES */
1191 &FOLDERID_PublicPictures
,
1192 CSIDL_Type_AllUsers
,
1196 { /* 0x37 - CSIDL_COMMON_VIDEO */
1197 &FOLDERID_PublicVideos
,
1198 CSIDL_Type_AllUsers
,
1202 { /* 0x38 - CSIDL_RESOURCES */
1203 &FOLDERID_ResourceDir
,
1204 CSIDL_Type_WindowsPath
,
1208 { /* 0x39 - CSIDL_RESOURCES_LOCALIZED */
1209 &FOLDERID_LocalizedResourcesDir
,
1210 CSIDL_Type_NonExistent
,
1214 { /* 0x3a - CSIDL_COMMON_OEM_LINKS */
1215 &FOLDERID_CommonOEMLinks
,
1216 CSIDL_Type_AllUsers
,
1220 { /* 0x3b - CSIDL_CDBURN_AREA */
1221 &FOLDERID_CDBurning
,
1224 Local_Settings_CD_BurningW
1226 { /* 0x3c unassigned */
1228 CSIDL_Type_Disallowed
,
1232 { /* 0x3d - CSIDL_COMPUTERSNEARME */
1234 CSIDL_Type_Disallowed
, /* FIXME */
1238 { /* 0x3e - CSIDL_PROFILES */
1240 CSIDL_Type_Disallowed
, /* oddly, this matches WinXP */
1245 &FOLDERID_AddNewPrograms
,
1246 CSIDL_Type_Disallowed
,
1251 &FOLDERID_AppUpdates
,
1252 CSIDL_Type_Disallowed
,
1257 &FOLDERID_ChangeRemovePrograms
,
1258 CSIDL_Type_Disallowed
,
1263 &FOLDERID_ConflictFolder
,
1264 CSIDL_Type_Disallowed
,
1275 &FOLDERID_DeviceMetadataStore
,
1276 CSIDL_Type_Disallowed
, /* FIXME */
1287 &FOLDERID_DocumentsLibrary
,
1288 CSIDL_Type_Disallowed
, /* FIXME */
1293 &FOLDERID_Downloads
,
1300 CSIDL_Type_Disallowed
,
1305 &FOLDERID_GameTasks
,
1306 CSIDL_Type_Disallowed
, /* FIXME */
1311 &FOLDERID_HomeGroup
,
1312 CSIDL_Type_Disallowed
,
1317 &FOLDERID_ImplicitAppShortcuts
,
1318 CSIDL_Type_Disallowed
, /* FIXME */
1323 &FOLDERID_Libraries
,
1324 CSIDL_Type_Disallowed
, /* FIXME */
1335 &FOLDERID_LocalAppDataLow
,
1341 &FOLDERID_MusicLibrary
,
1342 CSIDL_Type_Disallowed
, /* FIXME */
1347 &FOLDERID_OriginalImages
,
1348 CSIDL_Type_Disallowed
, /* FIXME */
1353 &FOLDERID_PhotoAlbums
,
1356 Pictures_Slide_ShowsW
1359 &FOLDERID_PicturesLibrary
,
1360 CSIDL_Type_Disallowed
, /* FIXME */
1365 &FOLDERID_Playlists
,
1371 &FOLDERID_ProgramFilesX64
,
1372 CSIDL_Type_NonExistent
,
1377 &FOLDERID_ProgramFilesCommonX64
,
1378 CSIDL_Type_NonExistent
,
1384 CSIDL_Type_CurrVer
, /* FIXME */
1389 &FOLDERID_PublicDownloads
,
1390 CSIDL_Type_AllUsers
,
1395 &FOLDERID_PublicGameTasks
,
1396 CSIDL_Type_AllUsers
,
1398 Microsoft_Windows_GameExplorerW
1401 &FOLDERID_PublicLibraries
,
1402 CSIDL_Type_AllUsers
,
1404 Microsoft_Windows_LibrariesW
1407 &FOLDERID_PublicRingtones
,
1408 CSIDL_Type_AllUsers
,
1410 Microsoft_Windows_RingtonesW
1413 &FOLDERID_QuickLaunch
,
1414 CSIDL_Type_Disallowed
, /* FIXME */
1419 &FOLDERID_RecordedTVLibrary
,
1420 CSIDL_Type_Disallowed
, /* FIXME */
1425 &FOLDERID_Ringtones
,
1426 CSIDL_Type_Disallowed
, /* FIXME */
1431 &FOLDERID_SampleMusic
,
1432 CSIDL_Type_AllUsers
,
1437 &FOLDERID_SamplePictures
,
1438 CSIDL_Type_AllUsers
,
1440 Pictures_Sample_PicturesW
1443 &FOLDERID_SamplePlaylists
,
1444 CSIDL_Type_AllUsers
,
1446 Music_Sample_PlaylistsW
1449 &FOLDERID_SampleVideos
,
1450 CSIDL_Type_AllUsers
,
1452 Videos_Sample_VideosW
1455 &FOLDERID_SavedGames
,
1461 &FOLDERID_SavedSearches
,
1467 &FOLDERID_SEARCH_CSC
,
1468 CSIDL_Type_Disallowed
,
1473 &FOLDERID_SEARCH_MAPI
,
1474 CSIDL_Type_Disallowed
,
1479 &FOLDERID_SearchHome
,
1480 CSIDL_Type_Disallowed
,
1485 &FOLDERID_SidebarDefaultParts
,
1486 CSIDL_Type_Disallowed
, /* FIXME */
1491 &FOLDERID_SidebarParts
,
1492 CSIDL_Type_Disallowed
, /* FIXME */
1497 &FOLDERID_SyncManagerFolder
,
1498 CSIDL_Type_Disallowed
,
1503 &FOLDERID_SyncResultsFolder
,
1504 CSIDL_Type_Disallowed
,
1509 &FOLDERID_SyncSetupFolder
,
1510 CSIDL_Type_Disallowed
,
1515 &FOLDERID_UserPinned
,
1516 CSIDL_Type_Disallowed
, /* FIXME */
1521 &FOLDERID_UserProfiles
,
1527 &FOLDERID_UserProgramFiles
,
1528 CSIDL_Type_Disallowed
, /* FIXME */
1533 &FOLDERID_UserProgramFilesCommon
,
1534 CSIDL_Type_Disallowed
, /* FIXME */
1539 &FOLDERID_UsersFiles
,
1540 CSIDL_Type_Disallowed
,
1545 &FOLDERID_UsersLibraries
,
1546 CSIDL_Type_Disallowed
,
1551 &FOLDERID_VideosLibrary
,
1552 CSIDL_Type_Disallowed
, /* FIXME */
1558 static HRESULT
_SHExpandEnvironmentStrings(LPCWSTR szSrc
, LPWSTR szDest
);
1560 /* Gets the value named value from the registry key
1561 * rootKey\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
1562 * (or from rootKey\userPrefix\... if userPrefix is not NULL) into path, which
1563 * is assumed to be MAX_PATH WCHARs in length.
1564 * If it exists, expands the value and writes the expanded value to
1565 * rootKey\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
1566 * Returns successful error code if the value was retrieved from the registry,
1567 * and a failure otherwise.
1569 static HRESULT
_SHGetUserShellFolderPath(HKEY rootKey
, LPCWSTR userPrefix
,
1570 LPCWSTR value
, LPWSTR path
)
1573 WCHAR shellFolderPath
[MAX_PATH
], userShellFolderPath
[MAX_PATH
];
1574 LPCWSTR pShellFolderPath
, pUserShellFolderPath
;
1575 DWORD dwType
, dwPathLen
= MAX_PATH
;
1576 HKEY userShellFolderKey
, shellFolderKey
;
1578 TRACE("%p,%s,%s,%p\n",rootKey
, debugstr_w(userPrefix
), debugstr_w(value
),
1583 strcpyW(shellFolderPath
, userPrefix
);
1584 PathAddBackslashW(shellFolderPath
);
1585 strcatW(shellFolderPath
, szSHFolders
);
1586 pShellFolderPath
= shellFolderPath
;
1587 strcpyW(userShellFolderPath
, userPrefix
);
1588 PathAddBackslashW(userShellFolderPath
);
1589 strcatW(userShellFolderPath
, szSHUserFolders
);
1590 pUserShellFolderPath
= userShellFolderPath
;
1594 pUserShellFolderPath
= szSHUserFolders
;
1595 pShellFolderPath
= szSHFolders
;
1598 if (RegCreateKeyW(rootKey
, pShellFolderPath
, &shellFolderKey
))
1600 TRACE("Failed to create %s\n", debugstr_w(pShellFolderPath
));
1603 if (RegCreateKeyW(rootKey
, pUserShellFolderPath
, &userShellFolderKey
))
1605 TRACE("Failed to create %s\n",
1606 debugstr_w(pUserShellFolderPath
));
1607 RegCloseKey(shellFolderKey
);
1611 if (!RegQueryValueExW(userShellFolderKey
, value
, NULL
, &dwType
,
1612 (LPBYTE
)path
, &dwPathLen
) && (dwType
== REG_EXPAND_SZ
|| dwType
== REG_SZ
))
1616 path
[dwPathLen
/ sizeof(WCHAR
)] = '\0';
1617 if (dwType
== REG_EXPAND_SZ
&& path
[0] == '%')
1619 WCHAR szTemp
[MAX_PATH
];
1621 _SHExpandEnvironmentStrings(path
, szTemp
);
1622 lstrcpynW(path
, szTemp
, MAX_PATH
);
1624 ret
= RegSetValueExW(shellFolderKey
, value
, 0, REG_SZ
, (LPBYTE
)path
,
1625 (strlenW(path
) + 1) * sizeof(WCHAR
));
1626 if (ret
!= ERROR_SUCCESS
)
1627 hr
= HRESULT_FROM_WIN32(ret
);
1633 RegCloseKey(shellFolderKey
);
1634 RegCloseKey(userShellFolderKey
);
1635 TRACE("returning 0x%08x\n", hr
);
1639 /* Gets a 'semi-expanded' default value of the CSIDL with index folder into
1640 * pszPath, based on the entries in CSIDL_Data. By semi-expanded, I mean:
1641 * - The entry's szDefaultPath may be either a string value or an integer
1642 * resource identifier. In the latter case, the string value of the resource
1644 * - Depending on the entry's type, the path may begin with an (unexpanded)
1645 * environment variable name. The caller is responsible for expanding
1646 * environment strings if so desired.
1647 * The types that are prepended with environment variables are:
1648 * CSIDL_Type_User: %USERPROFILE%
1649 * CSIDL_Type_AllUsers: %ALLUSERSPROFILE%
1650 * CSIDL_Type_CurrVer: %SystemDrive%
1651 * (Others might make sense too, but as yet are unneeded.)
1653 static HRESULT
_SHGetDefaultValue(BYTE folder
, LPWSTR pszPath
)
1656 WCHAR resourcePath
[MAX_PATH
];
1657 LPCWSTR pDefaultPath
= NULL
;
1659 TRACE("0x%02x,%p\n", folder
, pszPath
);
1661 if (folder
>= sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]))
1662 return E_INVALIDARG
;
1664 return E_INVALIDARG
;
1672 case CSIDL_PROGRAM_FILES
:
1673 case CSIDL_PROGRAM_FILESX86
:
1674 IsWow64Process( GetCurrentProcess(), &is_wow64
);
1675 folder
= is_wow64
? CSIDL_PROGRAM_FILESX86
: CSIDL_PROGRAM_FILES
;
1677 case CSIDL_PROGRAM_FILES_COMMON
:
1678 case CSIDL_PROGRAM_FILES_COMMONX86
:
1679 IsWow64Process( GetCurrentProcess(), &is_wow64
);
1680 folder
= is_wow64
? CSIDL_PROGRAM_FILES_COMMONX86
: CSIDL_PROGRAM_FILES_COMMON
;
1685 if (CSIDL_Data
[folder
].szDefaultPath
&&
1686 IS_INTRESOURCE(CSIDL_Data
[folder
].szDefaultPath
))
1688 if (LoadStringW(shell32_hInstance
,
1689 LOWORD(CSIDL_Data
[folder
].szDefaultPath
), resourcePath
, MAX_PATH
))
1692 pDefaultPath
= resourcePath
;
1696 FIXME("(%d,%s), LoadString failed, missing translation?\n", folder
,
1697 debugstr_w(pszPath
));
1704 pDefaultPath
= CSIDL_Data
[folder
].szDefaultPath
;
1708 switch (CSIDL_Data
[folder
].type
)
1710 case CSIDL_Type_User
:
1711 strcpyW(pszPath
, UserProfileW
);
1713 case CSIDL_Type_AllUsers
:
1714 strcpyW(pszPath
, AllUsersProfileW
);
1716 case CSIDL_Type_CurrVer
:
1717 strcpyW(pszPath
, SystemDriveW
);
1720 ; /* no corresponding env. var, do nothing */
1724 PathAddBackslashW(pszPath
);
1725 strcatW(pszPath
, pDefaultPath
);
1728 TRACE("returning 0x%08x\n", hr
);
1732 /* Gets the (unexpanded) value of the folder with index folder into pszPath.
1733 * The folder's type is assumed to be CSIDL_Type_CurrVer. Its default value
1734 * can be overridden in the HKLM\\szCurrentVersion key.
1735 * If dwFlags has SHGFP_TYPE_DEFAULT set or if the value isn't overridden in
1736 * the registry, uses _SHGetDefaultValue to get the value.
1738 static HRESULT
_SHGetCurrentVersionPath(DWORD dwFlags
, BYTE folder
,
1743 TRACE("0x%08x,0x%02x,%p\n", dwFlags
, folder
, pszPath
);
1745 if (folder
>= sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]))
1746 return E_INVALIDARG
;
1747 if (CSIDL_Data
[folder
].type
!= CSIDL_Type_CurrVer
)
1748 return E_INVALIDARG
;
1750 return E_INVALIDARG
;
1752 if (dwFlags
& SHGFP_TYPE_DEFAULT
)
1753 hr
= _SHGetDefaultValue(folder
, pszPath
);
1758 if (RegCreateKeyW(HKEY_LOCAL_MACHINE
, szCurrentVersion
, &hKey
))
1762 DWORD dwType
, dwPathLen
= MAX_PATH
* sizeof(WCHAR
);
1764 if (RegQueryValueExW(hKey
, CSIDL_Data
[folder
].szValueName
, NULL
,
1765 &dwType
, (LPBYTE
)pszPath
, &dwPathLen
) ||
1766 (dwType
!= REG_SZ
&& dwType
!= REG_EXPAND_SZ
))
1768 hr
= _SHGetDefaultValue(folder
, pszPath
);
1769 dwType
= REG_EXPAND_SZ
;
1772 case CSIDL_PROGRAM_FILESX86
:
1773 case CSIDL_PROGRAM_FILES_COMMONX86
:
1774 /* these two should never be set on 32-bit setups */
1778 IsWow64Process( GetCurrentProcess(), &is_wow64
);
1779 if (!is_wow64
) break;
1783 RegSetValueExW(hKey
, CSIDL_Data
[folder
].szValueName
, 0, dwType
,
1784 (LPBYTE
)pszPath
, (strlenW(pszPath
)+1)*sizeof(WCHAR
));
1789 pszPath
[dwPathLen
/ sizeof(WCHAR
)] = '\0';
1795 TRACE("returning 0x%08x (output path is %s)\n", hr
, debugstr_w(pszPath
));
1799 static LPWSTR
_GetUserSidStringFromToken(HANDLE Token
)
1801 char InfoBuffer
[64];
1802 PTOKEN_USER UserInfo
;
1806 UserInfo
= (PTOKEN_USER
) InfoBuffer
;
1807 if (! GetTokenInformation(Token
, TokenUser
, InfoBuffer
, sizeof(InfoBuffer
),
1810 if (GetLastError() != ERROR_INSUFFICIENT_BUFFER
)
1812 UserInfo
= HeapAlloc(GetProcessHeap(), 0, InfoSize
);
1813 if (UserInfo
== NULL
)
1815 if (! GetTokenInformation(Token
, TokenUser
, UserInfo
, InfoSize
,
1818 HeapFree(GetProcessHeap(), 0, UserInfo
);
1823 if (! ConvertSidToStringSidW(UserInfo
->User
.Sid
, &SidStr
))
1826 if (UserInfo
!= (PTOKEN_USER
) InfoBuffer
)
1827 HeapFree(GetProcessHeap(), 0, UserInfo
);
1832 /* Gets the user's path (unexpanded) for the CSIDL with index folder:
1833 * If SHGFP_TYPE_DEFAULT is set, calls _SHGetDefaultValue for it. Otherwise
1834 * calls _SHGetUserShellFolderPath for it. Where it looks depends on hToken:
1835 * - if hToken is -1, looks in HKEY_USERS\.Default
1836 * - otherwise looks first in HKEY_CURRENT_USER, followed by HKEY_LOCAL_MACHINE
1837 * if HKEY_CURRENT_USER doesn't contain any entries. If both fail, finally
1838 * calls _SHGetDefaultValue for it.
1840 static HRESULT
_SHGetUserProfilePath(HANDLE hToken
, DWORD dwFlags
, BYTE folder
,
1845 TRACE("%p,0x%08x,0x%02x,%p\n", hToken
, dwFlags
, folder
, pszPath
);
1847 if (folder
>= sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]))
1848 return E_INVALIDARG
;
1849 if (CSIDL_Data
[folder
].type
!= CSIDL_Type_User
)
1850 return E_INVALIDARG
;
1852 return E_INVALIDARG
;
1854 if (dwFlags
& SHGFP_TYPE_DEFAULT
)
1856 if (hToken
!= NULL
&& hToken
!= (HANDLE
)-1)
1858 FIXME("unsupported for user other than current or default\n");
1861 hr
= _SHGetDefaultValue(folder
, pszPath
);
1865 LPCWSTR userPrefix
= NULL
;
1868 if (hToken
== (HANDLE
)-1)
1870 hRootKey
= HKEY_USERS
;
1871 userPrefix
= DefaultW
;
1873 else if (hToken
== NULL
)
1874 hRootKey
= HKEY_CURRENT_USER
;
1877 hRootKey
= HKEY_USERS
;
1878 userPrefix
= _GetUserSidStringFromToken(hToken
);
1879 if (userPrefix
== NULL
)
1885 hr
= _SHGetUserShellFolderPath(hRootKey
, userPrefix
,
1886 CSIDL_Data
[folder
].szValueName
, pszPath
);
1887 if (FAILED(hr
) && hRootKey
!= HKEY_LOCAL_MACHINE
)
1888 hr
= _SHGetUserShellFolderPath(HKEY_LOCAL_MACHINE
, NULL
,
1889 CSIDL_Data
[folder
].szValueName
, pszPath
);
1891 hr
= _SHGetDefaultValue(folder
, pszPath
);
1892 if (userPrefix
!= NULL
&& userPrefix
!= DefaultW
)
1893 LocalFree((HLOCAL
) userPrefix
);
1896 TRACE("returning 0x%08x (output path is %s)\n", hr
, debugstr_w(pszPath
));
1900 /* Gets the (unexpanded) path for the CSIDL with index folder. If dwFlags has
1901 * SHGFP_TYPE_DEFAULT set, calls _SHGetDefaultValue. Otherwise calls
1902 * _SHGetUserShellFolderPath for it, looking only in HKEY_LOCAL_MACHINE.
1903 * If this fails, falls back to _SHGetDefaultValue.
1905 static HRESULT
_SHGetAllUsersProfilePath(DWORD dwFlags
, BYTE folder
,
1910 TRACE("0x%08x,0x%02x,%p\n", dwFlags
, folder
, pszPath
);
1912 if (folder
>= sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]))
1913 return E_INVALIDARG
;
1914 if (CSIDL_Data
[folder
].type
!= CSIDL_Type_AllUsers
)
1915 return E_INVALIDARG
;
1917 return E_INVALIDARG
;
1919 if (dwFlags
& SHGFP_TYPE_DEFAULT
)
1920 hr
= _SHGetDefaultValue(folder
, pszPath
);
1923 hr
= _SHGetUserShellFolderPath(HKEY_LOCAL_MACHINE
, NULL
,
1924 CSIDL_Data
[folder
].szValueName
, pszPath
);
1926 hr
= _SHGetDefaultValue(folder
, pszPath
);
1928 TRACE("returning 0x%08x (output path is %s)\n", hr
, debugstr_w(pszPath
));
1932 static HRESULT
_SHOpenProfilesKey(PHKEY pKey
)
1937 lRet
= RegCreateKeyExW(HKEY_LOCAL_MACHINE
, ProfileListW
, 0, NULL
, 0,
1938 KEY_ALL_ACCESS
, NULL
, pKey
, &disp
);
1939 return HRESULT_FROM_WIN32(lRet
);
1942 /* Reads the value named szValueName from the key profilesKey (assumed to be
1943 * opened by _SHOpenProfilesKey) into szValue, which is assumed to be MAX_PATH
1944 * WCHARs in length. If it doesn't exist, returns szDefault (and saves
1945 * szDefault to the registry).
1947 static HRESULT
_SHGetProfilesValue(HKEY profilesKey
, LPCWSTR szValueName
,
1948 LPWSTR szValue
, LPCWSTR szDefault
)
1951 DWORD type
, dwPathLen
= MAX_PATH
* sizeof(WCHAR
);
1954 TRACE("%p,%s,%p,%s\n", profilesKey
, debugstr_w(szValueName
), szValue
,
1955 debugstr_w(szDefault
));
1956 lRet
= RegQueryValueExW(profilesKey
, szValueName
, NULL
, &type
,
1957 (LPBYTE
)szValue
, &dwPathLen
);
1958 if (!lRet
&& (type
== REG_SZ
|| type
== REG_EXPAND_SZ
) && dwPathLen
1961 dwPathLen
/= sizeof(WCHAR
);
1962 szValue
[dwPathLen
] = '\0';
1967 /* Missing or invalid value, set a default */
1968 lstrcpynW(szValue
, szDefault
, MAX_PATH
);
1969 TRACE("Setting missing value %s to %s\n", debugstr_w(szValueName
),
1970 debugstr_w(szValue
));
1971 lRet
= RegSetValueExW(profilesKey
, szValueName
, 0, REG_EXPAND_SZ
,
1973 (strlenW(szValue
) + 1) * sizeof(WCHAR
));
1975 hr
= HRESULT_FROM_WIN32(lRet
);
1979 TRACE("returning 0x%08x (output value is %s)\n", hr
, debugstr_w(szValue
));
1983 /* Attempts to expand environment variables from szSrc into szDest, which is
1984 * assumed to be MAX_PATH characters in length. Before referring to the
1985 * environment, handles a few variables directly, because the environment
1986 * variables may not be set when this is called (as during Wine's installation
1987 * when default values are being written to the registry).
1988 * The directly handled environment variables, and their source, are:
1989 * - ALLUSERSPROFILE, USERPROFILE: reads from the registry
1990 * - SystemDrive: uses GetSystemDirectoryW and uses the drive portion of its
1992 * If one of the directly handled environment variables is expanded, only
1993 * expands a single variable, and only in the beginning of szSrc.
1995 static HRESULT
_SHExpandEnvironmentStrings(LPCWSTR szSrc
, LPWSTR szDest
)
1998 WCHAR szTemp
[MAX_PATH
], szProfilesPrefix
[MAX_PATH
] = { 0 };
2001 TRACE("%s, %p\n", debugstr_w(szSrc
), szDest
);
2003 if (!szSrc
|| !szDest
) return E_INVALIDARG
;
2005 /* short-circuit if there's nothing to expand */
2006 if (szSrc
[0] != '%')
2008 strcpyW(szDest
, szSrc
);
2012 /* Get the profile prefix, we'll probably be needing it */
2013 hr
= _SHOpenProfilesKey(&key
);
2016 WCHAR def_val
[MAX_PATH
];
2018 /* get the system drive */
2019 GetSystemDirectoryW(def_val
, MAX_PATH
);
2020 if (def_val
[1] == ':') strcpyW( def_val
+ 3, szDefaultProfileDirW
);
2021 else FIXME("non-drive system paths unsupported\n");
2023 hr
= _SHGetProfilesValue(key
, ProfilesDirectoryW
, szProfilesPrefix
, def_val
);
2027 strcpyW(szTemp
, szSrc
);
2028 while (SUCCEEDED(hr
) && szTemp
[0] == '%')
2030 if (!strncmpiW(szTemp
, AllUsersProfileW
, strlenW(AllUsersProfileW
)))
2032 WCHAR szAllUsers
[MAX_PATH
];
2034 strcpyW(szDest
, szProfilesPrefix
);
2035 hr
= _SHGetProfilesValue(key
, AllUsersProfileValueW
,
2036 szAllUsers
, AllUsersW
);
2037 PathAppendW(szDest
, szAllUsers
);
2038 PathAppendW(szDest
, szTemp
+ strlenW(AllUsersProfileW
));
2040 else if (!strncmpiW(szTemp
, UserProfileW
, strlenW(UserProfileW
)))
2042 WCHAR userName
[MAX_PATH
];
2043 DWORD userLen
= MAX_PATH
;
2045 strcpyW(szDest
, szProfilesPrefix
);
2046 GetUserNameW(userName
, &userLen
);
2047 PathAppendW(szDest
, userName
);
2048 PathAppendW(szDest
, szTemp
+ strlenW(UserProfileW
));
2050 else if (!strncmpiW(szTemp
, SystemDriveW
, strlenW(SystemDriveW
)))
2052 GetSystemDirectoryW(szDest
, MAX_PATH
);
2053 if (szDest
[1] != ':')
2055 FIXME("non-drive system paths unsupported\n");
2060 strcpyW(szDest
+ 3, szTemp
+ strlenW(SystemDriveW
) + 1);
2066 DWORD ret
= ExpandEnvironmentStringsW(szSrc
, szDest
, MAX_PATH
);
2069 hr
= HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER
);
2071 hr
= HRESULT_FROM_WIN32(GetLastError());
2075 if (SUCCEEDED(hr
) && szDest
[0] == '%')
2076 strcpyW(szTemp
, szDest
);
2079 /* terminate loop */
2086 TRACE("returning 0x%08x (input was %s, output is %s)\n", hr
,
2087 debugstr_w(szSrc
), debugstr_w(szDest
));
2091 /*************************************************************************
2092 * SHGetFolderPathW [SHELL32.@]
2094 * Convert nFolder to path.
2098 * Failure: standard HRESULT error codes.
2101 * Most values can be overridden in either
2102 * HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders
2103 * or in the same location in HKLM.
2104 * The "Shell Folders" registry key was used in NT4 and earlier systems.
2105 * Beginning with Windows 2000, the "User Shell Folders" key is used, so
2106 * changes made to it are made to the former key too. This synchronization is
2107 * done on-demand: not until someone requests the value of one of these paths
2108 * (by calling one of the SHGet functions) is the value synchronized.
2109 * Furthermore, the HKCU paths take precedence over the HKLM paths.
2111 HRESULT WINAPI
SHGetFolderPathW(
2112 HWND hwndOwner
, /* [I] owner window */
2113 int nFolder
, /* [I] CSIDL identifying the folder */
2114 HANDLE hToken
, /* [I] access token */
2115 DWORD dwFlags
, /* [I] which path to return */
2116 LPWSTR pszPath
) /* [O] converted path */
2118 HRESULT hr
= SHGetFolderPathAndSubDirW(hwndOwner
, nFolder
, hToken
, dwFlags
, NULL
, pszPath
);
2119 if(HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
) == hr
)
2120 hr
= HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND
);
2124 HRESULT WINAPI
SHGetFolderPathAndSubDirA(
2125 HWND hwndOwner
, /* [I] owner window */
2126 int nFolder
, /* [I] CSIDL identifying the folder */
2127 HANDLE hToken
, /* [I] access token */
2128 DWORD dwFlags
, /* [I] which path to return */
2129 LPCSTR pszSubPath
, /* [I] sub directory of the specified folder */
2130 LPSTR pszPath
) /* [O] converted path */
2134 LPWSTR pszSubPathW
= NULL
;
2135 LPWSTR pszPathW
= NULL
;
2136 TRACE("%08x,%08x,%s\n",nFolder
, dwFlags
, debugstr_w(pszSubPathW
));
2139 pszPathW
= HeapAlloc(GetProcessHeap(), 0, MAX_PATH
* sizeof(WCHAR
));
2141 hr
= HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY
);
2145 TRACE("%08x,%08x,%s\n",nFolder
, dwFlags
, debugstr_w(pszSubPathW
));
2147 /* SHGetFolderPathAndSubDirW does not distinguish if pszSubPath isn't
2148 * set (null), or an empty string.therefore call it without the parameter set
2149 * if pszSubPath is an empty string
2151 if (pszSubPath
&& pszSubPath
[0]) {
2152 length
= MultiByteToWideChar(CP_ACP
, 0, pszSubPath
, -1, NULL
, 0);
2153 pszSubPathW
= HeapAlloc(GetProcessHeap(), 0, length
* sizeof(WCHAR
));
2155 hr
= HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY
);
2158 MultiByteToWideChar(CP_ACP
, 0, pszSubPath
, -1, pszSubPathW
, length
);
2161 hr
= SHGetFolderPathAndSubDirW(hwndOwner
, nFolder
, hToken
, dwFlags
, pszSubPathW
, pszPathW
);
2163 if (SUCCEEDED(hr
) && pszPath
)
2164 WideCharToMultiByte(CP_ACP
, 0, pszPathW
, -1, pszPath
, MAX_PATH
, NULL
, NULL
);
2167 HeapFree(GetProcessHeap(), 0, pszPathW
);
2168 HeapFree(GetProcessHeap(), 0, pszSubPathW
);
2172 /*************************************************************************
2173 * SHGetFolderPathAndSubDirW [SHELL32.@]
2175 HRESULT WINAPI
SHGetFolderPathAndSubDirW(
2176 HWND hwndOwner
, /* [I] owner window */
2177 int nFolder
, /* [I] CSIDL identifying the folder */
2178 HANDLE hToken
, /* [I] access token */
2179 DWORD dwFlags
, /* [I] which path to return */
2180 LPCWSTR pszSubPath
,/* [I] sub directory of the specified folder */
2181 LPWSTR pszPath
) /* [O] converted path */
2184 WCHAR szBuildPath
[MAX_PATH
], szTemp
[MAX_PATH
];
2185 DWORD folder
= nFolder
& CSIDL_FOLDER_MASK
;
2189 TRACE("%p,%p,nFolder=0x%04x,%s\n", hwndOwner
,pszPath
,nFolder
,debugstr_w(pszSubPath
));
2191 /* Windows always NULL-terminates the resulting path regardless of success
2192 * or failure, so do so first
2197 if (folder
>= sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]))
2198 return E_INVALIDARG
;
2199 if ((SHGFP_TYPE_CURRENT
!= dwFlags
) && (SHGFP_TYPE_DEFAULT
!= dwFlags
))
2200 return E_INVALIDARG
;
2202 type
= CSIDL_Data
[folder
].type
;
2205 case CSIDL_Type_Disallowed
:
2208 case CSIDL_Type_NonExistent
:
2211 case CSIDL_Type_WindowsPath
:
2212 GetWindowsDirectoryW(szTemp
, MAX_PATH
);
2213 if (CSIDL_Data
[folder
].szDefaultPath
&&
2214 !IS_INTRESOURCE(CSIDL_Data
[folder
].szDefaultPath
) &&
2215 *CSIDL_Data
[folder
].szDefaultPath
)
2217 PathAddBackslashW(szTemp
);
2218 strcatW(szTemp
, CSIDL_Data
[folder
].szDefaultPath
);
2222 case CSIDL_Type_SystemPath
:
2223 GetSystemDirectoryW(szTemp
, MAX_PATH
);
2224 if (CSIDL_Data
[folder
].szDefaultPath
&&
2225 !IS_INTRESOURCE(CSIDL_Data
[folder
].szDefaultPath
) &&
2226 *CSIDL_Data
[folder
].szDefaultPath
)
2228 PathAddBackslashW(szTemp
);
2229 strcatW(szTemp
, CSIDL_Data
[folder
].szDefaultPath
);
2233 case CSIDL_Type_SystemX86Path
:
2234 if (!GetSystemWow64DirectoryW(szTemp
, MAX_PATH
)) GetSystemDirectoryW(szTemp
, MAX_PATH
);
2235 if (CSIDL_Data
[folder
].szDefaultPath
&&
2236 !IS_INTRESOURCE(CSIDL_Data
[folder
].szDefaultPath
) &&
2237 *CSIDL_Data
[folder
].szDefaultPath
)
2239 PathAddBackslashW(szTemp
);
2240 strcatW(szTemp
, CSIDL_Data
[folder
].szDefaultPath
);
2244 case CSIDL_Type_CurrVer
:
2245 hr
= _SHGetCurrentVersionPath(dwFlags
, folder
, szTemp
);
2247 case CSIDL_Type_User
:
2248 hr
= _SHGetUserProfilePath(hToken
, dwFlags
, folder
, szTemp
);
2250 case CSIDL_Type_AllUsers
:
2251 hr
= _SHGetAllUsersProfilePath(dwFlags
, folder
, szTemp
);
2254 FIXME("bogus type %d, please fix\n", type
);
2259 /* Expand environment strings if necessary */
2261 hr
= _SHExpandEnvironmentStrings(szTemp
, szBuildPath
);
2263 strcpyW(szBuildPath
, szTemp
);
2265 if (FAILED(hr
)) goto end
;
2268 /* make sure the new path does not exceed the buffer length
2269 * and remember to backslash and terminate it */
2270 if(MAX_PATH
< (lstrlenW(szBuildPath
) + lstrlenW(pszSubPath
) + 2)) {
2271 hr
= HRESULT_FROM_WIN32(ERROR_FILENAME_EXCED_RANGE
);
2274 PathAppendW(szBuildPath
, pszSubPath
);
2275 PathRemoveBackslashW(szBuildPath
);
2277 /* Copy the path if it's available before we might return */
2278 if (SUCCEEDED(hr
) && pszPath
)
2279 strcpyW(pszPath
, szBuildPath
);
2281 /* if we don't care about existing directories we are ready */
2282 if(nFolder
& CSIDL_FLAG_DONT_VERIFY
) goto end
;
2284 if (PathFileExistsW(szBuildPath
)) goto end
;
2286 /* not existing but we are not allowed to create it. The return value
2287 * is verified against shell32 version 6.0.
2289 if (!(nFolder
& CSIDL_FLAG_CREATE
))
2291 hr
= HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
2295 /* create directory/directories */
2296 ret
= SHCreateDirectoryExW(hwndOwner
, szBuildPath
, NULL
);
2297 if (ret
&& ret
!= ERROR_ALREADY_EXISTS
)
2299 ERR("Failed to create directory %s.\n", debugstr_w(szBuildPath
));
2304 TRACE("Created missing system directory %s\n", debugstr_w(szBuildPath
));
2306 TRACE("returning 0x%08x (final path is %s)\n", hr
, debugstr_w(szBuildPath
));
2310 /*************************************************************************
2311 * SHGetFolderPathA [SHELL32.@]
2313 * See SHGetFolderPathW.
2315 HRESULT WINAPI
SHGetFolderPathA(
2322 WCHAR szTemp
[MAX_PATH
];
2325 TRACE("%p,%p,nFolder=0x%04x\n",hwndOwner
,pszPath
,nFolder
);
2329 hr
= SHGetFolderPathW(hwndOwner
, nFolder
, hToken
, dwFlags
, szTemp
);
2330 if (SUCCEEDED(hr
) && pszPath
)
2331 WideCharToMultiByte(CP_ACP
, 0, szTemp
, -1, pszPath
, MAX_PATH
, NULL
,
2337 /* For each folder in folders, if its value has not been set in the registry,
2338 * calls _SHGetUserProfilePath or _SHGetAllUsersProfilePath (depending on the
2339 * folder's type) to get the unexpanded value first.
2340 * Writes the unexpanded value to User Shell Folders, and queries it with
2341 * SHGetFolderPathW to force the creation of the directory if it doesn't
2342 * already exist. SHGetFolderPathW also returns the expanded value, which
2343 * this then writes to Shell Folders.
2345 static HRESULT
_SHRegisterFolders(HKEY hRootKey
, HANDLE hToken
,
2346 LPCWSTR szUserShellFolderPath
, LPCWSTR szShellFolderPath
, const UINT folders
[],
2350 WCHAR path
[MAX_PATH
];
2352 HKEY hUserKey
= NULL
, hKey
= NULL
;
2353 DWORD dwType
, dwPathLen
;
2356 TRACE("%p,%p,%s,%p,%u\n", hRootKey
, hToken
,
2357 debugstr_w(szUserShellFolderPath
), folders
, foldersLen
);
2359 ret
= RegCreateKeyW(hRootKey
, szUserShellFolderPath
, &hUserKey
);
2361 hr
= HRESULT_FROM_WIN32(ret
);
2364 ret
= RegCreateKeyW(hRootKey
, szShellFolderPath
, &hKey
);
2366 hr
= HRESULT_FROM_WIN32(ret
);
2368 for (i
= 0; SUCCEEDED(hr
) && i
< foldersLen
; i
++)
2370 dwPathLen
= MAX_PATH
* sizeof(WCHAR
);
2371 if (RegQueryValueExW(hUserKey
, CSIDL_Data
[folders
[i
]].szValueName
, NULL
,
2372 &dwType
, (LPBYTE
)path
, &dwPathLen
) || (dwType
!= REG_SZ
&&
2373 dwType
!= REG_EXPAND_SZ
))
2376 if (CSIDL_Data
[folders
[i
]].type
== CSIDL_Type_User
)
2377 _SHGetUserProfilePath(hToken
, SHGFP_TYPE_DEFAULT
, folders
[i
],
2379 else if (CSIDL_Data
[folders
[i
]].type
== CSIDL_Type_AllUsers
)
2380 _SHGetAllUsersProfilePath(SHGFP_TYPE_DEFAULT
, folders
[i
], path
);
2381 else if (CSIDL_Data
[folders
[i
]].type
== CSIDL_Type_WindowsPath
)
2383 GetWindowsDirectoryW(path
, MAX_PATH
);
2384 if (CSIDL_Data
[folders
[i
]].szDefaultPath
&&
2385 !IS_INTRESOURCE(CSIDL_Data
[folders
[i
]].szDefaultPath
))
2387 PathAddBackslashW(path
);
2388 strcatW(path
, CSIDL_Data
[folders
[i
]].szDefaultPath
);
2395 ret
= RegSetValueExW(hUserKey
,
2396 CSIDL_Data
[folders
[i
]].szValueName
, 0, REG_EXPAND_SZ
,
2397 (LPBYTE
)path
, (strlenW(path
) + 1) * sizeof(WCHAR
));
2399 hr
= HRESULT_FROM_WIN32(ret
);
2402 hr
= SHGetFolderPathW(NULL
, folders
[i
] | CSIDL_FLAG_CREATE
,
2403 hToken
, SHGFP_TYPE_DEFAULT
, path
);
2404 ret
= RegSetValueExW(hKey
,
2405 CSIDL_Data
[folders
[i
]].szValueName
, 0, REG_SZ
,
2406 (LPBYTE
)path
, (strlenW(path
) + 1) * sizeof(WCHAR
));
2408 hr
= HRESULT_FROM_WIN32(ret
);
2414 RegCloseKey(hUserKey
);
2418 TRACE("returning 0x%08x\n", hr
);
2422 static HRESULT
_SHRegisterUserShellFolders(BOOL bDefault
)
2424 static const UINT folders
[] = {
2435 CSIDL_DESKTOPDIRECTORY
,
2439 CSIDL_LOCAL_APPDATA
,
2440 CSIDL_INTERNET_CACHE
,
2447 WCHAR userShellFolderPath
[MAX_PATH
], shellFolderPath
[MAX_PATH
];
2448 LPCWSTR pUserShellFolderPath
, pShellFolderPath
;
2453 TRACE("%s\n", bDefault
? "TRUE" : "FALSE");
2456 hToken
= (HANDLE
)-1;
2457 hRootKey
= HKEY_USERS
;
2458 strcpyW(userShellFolderPath
, DefaultW
);
2459 PathAddBackslashW(userShellFolderPath
);
2460 strcatW(userShellFolderPath
, szSHUserFolders
);
2461 pUserShellFolderPath
= userShellFolderPath
;
2462 strcpyW(shellFolderPath
, DefaultW
);
2463 PathAddBackslashW(shellFolderPath
);
2464 strcatW(shellFolderPath
, szSHFolders
);
2465 pShellFolderPath
= shellFolderPath
;
2470 hRootKey
= HKEY_CURRENT_USER
;
2471 pUserShellFolderPath
= szSHUserFolders
;
2472 pShellFolderPath
= szSHFolders
;
2475 hr
= _SHRegisterFolders(hRootKey
, hToken
, pUserShellFolderPath
,
2476 pShellFolderPath
, folders
, sizeof(folders
) / sizeof(folders
[0]));
2477 TRACE("returning 0x%08x\n", hr
);
2481 static HRESULT
_SHRegisterCommonShellFolders(void)
2483 static const UINT folders
[] = {
2484 CSIDL_COMMON_STARTMENU
,
2485 CSIDL_COMMON_PROGRAMS
,
2486 CSIDL_COMMON_STARTUP
,
2487 CSIDL_COMMON_DESKTOPDIRECTORY
,
2488 CSIDL_COMMON_FAVORITES
,
2489 CSIDL_COMMON_APPDATA
,
2490 CSIDL_COMMON_TEMPLATES
,
2491 CSIDL_COMMON_DOCUMENTS
,
2492 CSIDL_COMMON_ADMINTOOLS
,
2494 CSIDL_COMMON_PICTURES
,
2500 hr
= _SHRegisterFolders(HKEY_LOCAL_MACHINE
, NULL
, szSHUserFolders
,
2501 szSHFolders
, folders
, sizeof(folders
) / sizeof(folders
[0]));
2502 TRACE("returning 0x%08x\n", hr
);
2506 /******************************************************************************
2507 * _SHAppendToUnixPath [Internal]
2509 * Helper function for _SHCreateSymbolicLinks. Appends pwszSubPath (or the
2510 * corresponding resource, if IS_INTRESOURCE) to the unix base path 'szBasePath'
2511 * and replaces backslashes with slashes.
2514 * szBasePath [IO] The unix base path, which will be appended to (CP_UNXICP).
2515 * pwszSubPath [I] Sub-path or resource id (use MAKEINTRESOURCEW).
2521 static inline BOOL
_SHAppendToUnixPath(char *szBasePath
, LPCWSTR pwszSubPath
) {
2522 WCHAR wszSubPath
[MAX_PATH
];
2523 int cLen
= strlen(szBasePath
);
2526 if (IS_INTRESOURCE(pwszSubPath
)) {
2527 if (!LoadStringW(shell32_hInstance
, LOWORD(pwszSubPath
), wszSubPath
, MAX_PATH
)) {
2528 /* Fall back to hard coded defaults. */
2529 switch (LOWORD(pwszSubPath
)) {
2531 lstrcpyW(wszSubPath
, PersonalW
);
2534 lstrcpyW(wszSubPath
, My_MusicW
);
2536 case IDS_MYPICTURES
:
2537 lstrcpyW(wszSubPath
, My_PicturesW
);
2540 lstrcpyW(wszSubPath
, My_VideosW
);
2543 ERR("LoadString(%d) failed!\n", LOWORD(pwszSubPath
));
2548 lstrcpyW(wszSubPath
, pwszSubPath
);
2551 if (szBasePath
[cLen
-1] != '/') szBasePath
[cLen
++] = '/';
2553 if (!WideCharToMultiByte(CP_UNIXCP
, 0, wszSubPath
, -1, szBasePath
+ cLen
,
2554 FILENAME_MAX
- cLen
, NULL
, NULL
))
2559 pBackslash
= szBasePath
+ cLen
;
2560 while ((pBackslash
= strchr(pBackslash
, '\\'))) *pBackslash
= '/';
2565 /******************************************************************************
2566 * _SHCreateSymbolicLinks [Internal]
2568 * Sets up symbol links for various shell folders to point into the users home
2569 * directory. We do an educated guess about what the user would probably want:
2570 * - If there is a 'My Documents' directory in $HOME, the user probably wants
2571 * wine's 'My Documents' to point there. Furthermore, we imply that the user
2572 * is a Windows lover and has no problem with wine creating 'My Pictures',
2573 * 'My Music' and 'My Videos' subfolders under '$HOME/My Documents', if those
2574 * do not already exits. We put appropriate symbolic links in place for those,
2576 * - If there is no 'My Documents' directory in $HOME, we let 'My Documents'
2577 * point directly to $HOME. We assume the user to be a unix hacker who does not
2578 * want wine to create anything anywhere besides the .wine directory. So, if
2579 * there already is a 'My Music' directory in $HOME, we symlink the 'My Music'
2580 * shell folder to it. But if not, then we check XDG_MUSIC_DIR - "well known"
2581 * directory, and try to link to that. If that fails, then we symlink to
2582 * $HOME directly. The same holds fo 'My Pictures' and 'My Videos'.
2583 * - The Desktop shell folder is symlinked to XDG_DESKTOP_DIR. If that does not
2584 * exist, then we try '$HOME/Desktop'. If that does not exist, then we leave
2586 * ('My Music',... above in fact means LoadString(IDS_MYMUSIC))
2588 static void _SHCreateSymbolicLinks(void)
2590 UINT aidsMyStuff
[] = { IDS_MYPICTURES
, IDS_MYVIDEOS
, IDS_MYMUSIC
}, i
;
2591 int acsidlMyStuff
[] = { CSIDL_MYPICTURES
, CSIDL_MYVIDEO
, CSIDL_MYMUSIC
};
2592 static const char * const xdg_dirs
[] = { "PICTURES", "VIDEOS", "MUSIC", "DESKTOP" };
2593 static const unsigned int num
= sizeof(xdg_dirs
) / sizeof(xdg_dirs
[0]);
2594 WCHAR wszTempPath
[MAX_PATH
];
2595 char szPersonalTarget
[FILENAME_MAX
], *pszPersonal
;
2596 char szMyStuffTarget
[FILENAME_MAX
], *pszMyStuff
;
2597 char szDesktopTarget
[FILENAME_MAX
], *pszDesktop
;
2598 struct stat statFolder
;
2599 const char *pszHome
;
2601 char ** xdg_results
;
2602 char * xdg_desktop_dir
;
2604 /* Create all necessary profile sub-dirs up to 'My Documents' and get the unix path. */
2605 hr
= SHGetFolderPathW(NULL
, CSIDL_PERSONAL
|CSIDL_FLAG_CREATE
, NULL
,
2606 SHGFP_TYPE_DEFAULT
, wszTempPath
);
2607 if (FAILED(hr
)) return;
2608 pszPersonal
= wine_get_unix_file_name(wszTempPath
);
2609 if (!pszPersonal
) return;
2611 hr
= XDG_UserDirLookup(xdg_dirs
, num
, &xdg_results
);
2612 if (FAILED(hr
)) xdg_results
= NULL
;
2614 pszHome
= getenv("HOME");
2615 if (pszHome
&& !stat(pszHome
, &statFolder
) && S_ISDIR(statFolder
.st_mode
)) {
2616 strcpy(szPersonalTarget
, pszHome
);
2617 if (_SHAppendToUnixPath(szPersonalTarget
, MAKEINTRESOURCEW(IDS_PERSONAL
)) &&
2618 !stat(szPersonalTarget
, &statFolder
) && S_ISDIR(statFolder
.st_mode
))
2620 /* '$HOME/My Documents' exists. Create 'My Pictures', 'My Videos' and
2621 * 'My Music' subfolders or fail silently if they already exist. */
2622 for (i
= 0; i
< sizeof(aidsMyStuff
)/sizeof(aidsMyStuff
[0]); i
++) {
2623 strcpy(szMyStuffTarget
, szPersonalTarget
);
2624 if (_SHAppendToUnixPath(szMyStuffTarget
, MAKEINTRESOURCEW(aidsMyStuff
[i
])))
2625 mkdir(szMyStuffTarget
, 0777);
2630 /* '$HOME/My Documents' doesn't exists, but '$HOME' does. */
2631 strcpy(szPersonalTarget
, pszHome
);
2634 /* Replace 'My Documents' directory with a symlink of fail silently if not empty. */
2636 symlink(szPersonalTarget
, pszPersonal
);
2640 /* '$HOME' doesn't exist. Create 'My Pictures', 'My Videos' and 'My Music' subdirs
2641 * in '%USERPROFILE%\\My Documents' or fail silently if they already exist. */
2642 strcpy(szPersonalTarget
, pszPersonal
);
2643 for (i
= 0; i
< sizeof(aidsMyStuff
)/sizeof(aidsMyStuff
[0]); i
++) {
2644 strcpy(szMyStuffTarget
, szPersonalTarget
);
2645 if (_SHAppendToUnixPath(szMyStuffTarget
, MAKEINTRESOURCEW(aidsMyStuff
[i
])))
2646 mkdir(szMyStuffTarget
, 0777);
2650 /* Create symbolic links for 'My Pictures', 'My Videos' and 'My Music'. */
2651 for (i
=0; i
< sizeof(aidsMyStuff
)/sizeof(aidsMyStuff
[0]); i
++) {
2652 /* Create the current 'My Whatever' folder and get its unix path. */
2653 hr
= SHGetFolderPathW(NULL
, acsidlMyStuff
[i
]|CSIDL_FLAG_CREATE
, NULL
,
2654 SHGFP_TYPE_DEFAULT
, wszTempPath
);
2655 if (FAILED(hr
)) continue;
2656 pszMyStuff
= wine_get_unix_file_name(wszTempPath
);
2657 if (!pszMyStuff
) continue;
2659 strcpy(szMyStuffTarget
, szPersonalTarget
);
2660 if (_SHAppendToUnixPath(szMyStuffTarget
, MAKEINTRESOURCEW(aidsMyStuff
[i
])) &&
2661 !stat(szMyStuffTarget
, &statFolder
) && S_ISDIR(statFolder
.st_mode
))
2663 /* If there's a 'My Whatever' directory where 'My Documents' links to, link to it. */
2665 symlink(szMyStuffTarget
, pszMyStuff
);
2670 if (xdg_results
&& xdg_results
[i
])
2672 /* the folder specified by XDG_XXX_DIR exists, link to it. */
2673 symlink(xdg_results
[i
], pszMyStuff
);
2677 /* Else link to where 'My Documents' itself links to. */
2678 symlink(szPersonalTarget
, pszMyStuff
);
2681 HeapFree(GetProcessHeap(), 0, pszMyStuff
);
2684 /* Last but not least, the Desktop folder */
2686 strcpy(szDesktopTarget
, pszHome
);
2688 strcpy(szDesktopTarget
, pszPersonal
);
2689 HeapFree(GetProcessHeap(), 0, pszPersonal
);
2691 xdg_desktop_dir
= xdg_results
? xdg_results
[num
- 1] : NULL
;
2692 if (xdg_desktop_dir
||
2693 (_SHAppendToUnixPath(szDesktopTarget
, DesktopW
) &&
2694 !stat(szDesktopTarget
, &statFolder
) && S_ISDIR(statFolder
.st_mode
)))
2696 hr
= SHGetFolderPathW(NULL
, CSIDL_DESKTOPDIRECTORY
|CSIDL_FLAG_CREATE
, NULL
,
2697 SHGFP_TYPE_DEFAULT
, wszTempPath
);
2698 if (SUCCEEDED(hr
) && (pszDesktop
= wine_get_unix_file_name(wszTempPath
)))
2701 if (xdg_desktop_dir
)
2702 symlink(xdg_desktop_dir
, pszDesktop
);
2704 symlink(szDesktopTarget
, pszDesktop
);
2705 HeapFree(GetProcessHeap(), 0, pszDesktop
);
2709 /* Free resources allocated by XDG_UserDirLookup() */
2712 for (i
= 0; i
< num
; i
++)
2713 HeapFree(GetProcessHeap(), 0, xdg_results
[i
]);
2714 HeapFree(GetProcessHeap(), 0, xdg_results
);
2718 /******************************************************************************
2719 * create_extra_folders [Internal]
2721 * Create some extra folders that don't have a standard CSIDL definition.
2723 static HRESULT
create_extra_folders(void)
2725 static const WCHAR environW
[] = {'E','n','v','i','r','o','n','m','e','n','t',0};
2726 static const WCHAR microsoftW
[] = {'M','i','c','r','o','s','o','f','t',0};
2727 static const WCHAR TempW
[] = {'T','e','m','p',0};
2728 static const WCHAR TEMPW
[] = {'T','E','M','P',0};
2729 static const WCHAR TMPW
[] = {'T','M','P',0};
2730 WCHAR path
[MAX_PATH
+5];
2733 DWORD type
, size
, ret
;
2735 ret
= RegCreateKeyW( HKEY_CURRENT_USER
, environW
, &hkey
);
2736 if (ret
) return HRESULT_FROM_WIN32( ret
);
2738 /* FIXME: should be under AppData, but we don't want spaces in the temp path */
2739 hr
= SHGetFolderPathAndSubDirW( 0, CSIDL_PROFILE
| CSIDL_FLAG_CREATE
, NULL
,
2740 SHGFP_TYPE_DEFAULT
, TempW
, path
);
2743 size
= sizeof(path
);
2744 if (RegQueryValueExW( hkey
, TEMPW
, NULL
, &type
, (LPBYTE
)path
, &size
))
2745 RegSetValueExW( hkey
, TEMPW
, 0, REG_SZ
, (LPBYTE
)path
, (strlenW(path
) + 1) * sizeof(WCHAR
) );
2746 size
= sizeof(path
);
2747 if (RegQueryValueExW( hkey
, TMPW
, NULL
, &type
, (LPBYTE
)path
, &size
))
2748 RegSetValueExW( hkey
, TMPW
, 0, REG_SZ
, (LPBYTE
)path
, (strlenW(path
) + 1) * sizeof(WCHAR
) );
2750 RegCloseKey( hkey
);
2754 hr
= SHGetFolderPathAndSubDirW( 0, CSIDL_COMMON_APPDATA
| CSIDL_FLAG_CREATE
, NULL
,
2755 SHGFP_TYPE_DEFAULT
, microsoftW
, path
);
2761 /******************************************************************************
2762 * set_folder_attributes
2764 * Set the various folder attributes registry keys.
2766 static HRESULT
set_folder_attributes(void)
2768 static const WCHAR clsidW
[] = {'C','L','S','I','D','\\',0 };
2769 static const WCHAR shellfolderW
[] = {'\\','S','h','e','l','l','F','o','l','d','e','r', 0 };
2770 static const WCHAR wfparsingW
[] = {'W','a','n','t','s','F','O','R','P','A','R','S','I','N','G',0};
2771 static const WCHAR wfdisplayW
[] = {'W','a','n','t','s','F','O','R','D','I','S','P','L','A','Y',0};
2772 static const WCHAR hideasdeleteW
[] = {'H','i','d','e','A','s','D','e','l','e','t','e','P','e','r','U','s','e','r',0};
2773 static const WCHAR attributesW
[] = {'A','t','t','r','i','b','u','t','e','s',0};
2774 static const WCHAR cfattributesW
[] = {'C','a','l','l','F','o','r','A','t','t','r','i','b','u','t','e','s',0};
2775 static const WCHAR emptyW
[] = {0};
2784 DWORD call_for_attr
;
2787 { &CLSID_UnixFolder
, TRUE
, FALSE
, FALSE
},
2788 { &CLSID_UnixDosFolder
, TRUE
, FALSE
, FALSE
,
2789 SFGAO_FILESYSANCESTOR
|SFGAO_FOLDER
|SFGAO_HASSUBFOLDER
, SFGAO_FILESYSTEM
},
2790 { &CLSID_FolderShortcut
, FALSE
, FALSE
, FALSE
,
2791 SFGAO_FILESYSTEM
|SFGAO_FOLDER
|SFGAO_LINK
,
2792 SFGAO_HASSUBFOLDER
|SFGAO_FILESYSTEM
|SFGAO_FOLDER
|SFGAO_FILESYSANCESTOR
},
2793 { &CLSID_MyDocuments
, TRUE
, FALSE
, FALSE
,
2794 SFGAO_FILESYSANCESTOR
|SFGAO_FOLDER
|SFGAO_HASSUBFOLDER
, SFGAO_FILESYSTEM
},
2795 { &CLSID_RecycleBin
, FALSE
, FALSE
, FALSE
,
2796 SFGAO_FOLDER
|SFGAO_DROPTARGET
|SFGAO_HASPROPSHEET
},
2797 { &CLSID_ControlPanel
, FALSE
, TRUE
, TRUE
,
2798 SFGAO_FOLDER
|SFGAO_HASSUBFOLDER
}
2802 WCHAR buffer
[39 + (sizeof(clsidW
) + sizeof(shellfolderW
)) / sizeof(WCHAR
)];
2806 for (i
= 0; i
< sizeof(folders
)/sizeof(folders
[0]); i
++)
2808 strcpyW( buffer
, clsidW
);
2809 StringFromGUID2( folders
[i
].clsid
, buffer
+ strlenW(buffer
), 39 );
2810 strcatW( buffer
, shellfolderW
);
2811 res
= RegCreateKeyExW( HKEY_CLASSES_ROOT
, buffer
, 0, NULL
, 0,
2812 KEY_READ
| KEY_WRITE
, NULL
, &hkey
, NULL
);
2813 if (res
) return HRESULT_FROM_WIN32( res
);
2814 if (folders
[i
].wfparsing
)
2815 res
= RegSetValueExW( hkey
, wfparsingW
, 0, REG_SZ
, (const BYTE
*)emptyW
, sizeof(emptyW
) );
2816 if (folders
[i
].wfdisplay
)
2817 res
= RegSetValueExW( hkey
, wfdisplayW
, 0, REG_SZ
, (const BYTE
*)emptyW
, sizeof(emptyW
) );
2818 if (folders
[i
].hideasdel
)
2819 res
= RegSetValueExW( hkey
, hideasdeleteW
, 0, REG_SZ
, (const BYTE
*)emptyW
, sizeof(emptyW
) );
2820 if (folders
[i
].attr
)
2821 res
= RegSetValueExW( hkey
, attributesW
, 0, REG_DWORD
,
2822 (const BYTE
*)&folders
[i
].attr
, sizeof(DWORD
));
2823 if (folders
[i
].call_for_attr
)
2824 res
= RegSetValueExW( hkey
, cfattributesW
, 0, REG_DWORD
,
2825 (const BYTE
*)&folders
[i
].call_for_attr
, sizeof(DWORD
));
2826 RegCloseKey( hkey
);
2832 /* Register the default values in the registry, as some apps seem to depend
2833 * on their presence. The set registered was taken from Windows XP.
2835 HRESULT
SHELL_RegisterShellFolders(void)
2839 /* Set up '$HOME' targeted symlinks for 'My Documents', 'My Pictures',
2840 * 'My Videos', 'My Music' and 'Desktop' in advance, so that the
2841 * _SHRegister*ShellFolders() functions will find everything nice and clean
2842 * and thus will not attempt to create them in the profile directory. */
2843 _SHCreateSymbolicLinks();
2845 hr
= _SHRegisterUserShellFolders(TRUE
);
2847 hr
= _SHRegisterUserShellFolders(FALSE
);
2849 hr
= _SHRegisterCommonShellFolders();
2851 hr
= create_extra_folders();
2853 hr
= set_folder_attributes();
2857 /*************************************************************************
2858 * SHGetSpecialFolderPathA [SHELL32.@]
2860 BOOL WINAPI
SHGetSpecialFolderPathA (
2866 return SHGetFolderPathA(hwndOwner
, nFolder
+ (bCreate
? CSIDL_FLAG_CREATE
: 0), NULL
, 0,
2870 /*************************************************************************
2871 * SHGetSpecialFolderPathW
2873 BOOL WINAPI
SHGetSpecialFolderPathW (
2879 return SHGetFolderPathW(hwndOwner
, nFolder
+ (bCreate
? CSIDL_FLAG_CREATE
: 0), NULL
, 0,
2883 /*************************************************************************
2884 * SHGetSpecialFolderPath (SHELL32.175)
2886 BOOL WINAPI
SHGetSpecialFolderPathAW (
2893 if (SHELL_OsIsUnicode())
2894 return SHGetSpecialFolderPathW (hwndOwner
, szPath
, nFolder
, bCreate
);
2895 return SHGetSpecialFolderPathA (hwndOwner
, szPath
, nFolder
, bCreate
);
2898 /*************************************************************************
2899 * SHGetFolderLocation [SHELL32.@]
2901 * Gets the folder locations from the registry and creates a pidl.
2905 * nFolder [I] CSIDL_xxxxx
2906 * hToken [I] token representing user, or NULL for current user, or -1 for
2908 * dwReserved [I] must be zero
2909 * ppidl [O] PIDL of a special folder
2913 * Failure: Standard OLE-defined error result, S_FALSE or E_INVALIDARG
2916 * Creates missing reg keys and directories.
2917 * Mostly forwards to SHGetFolderPathW, but a few values of nFolder return
2918 * virtual folders that are handled here.
2920 HRESULT WINAPI
SHGetFolderLocation(
2925 LPITEMIDLIST
*ppidl
)
2927 HRESULT hr
= E_INVALIDARG
;
2929 TRACE("%p 0x%08x %p 0x%08x %p\n",
2930 hwndOwner
, nFolder
, hToken
, dwReserved
, ppidl
);
2933 return E_INVALIDARG
;
2935 return E_INVALIDARG
;
2937 /* The virtual folders' locations are not user-dependent */
2939 switch (nFolder
& CSIDL_FOLDER_MASK
)
2942 *ppidl
= _ILCreateDesktop();
2945 case CSIDL_PERSONAL
:
2946 *ppidl
= _ILCreateMyDocuments();
2949 case CSIDL_INTERNET
:
2950 *ppidl
= _ILCreateIExplore();
2953 case CSIDL_CONTROLS
:
2954 *ppidl
= _ILCreateControlPanel();
2957 case CSIDL_PRINTERS
:
2958 *ppidl
= _ILCreatePrinters();
2961 case CSIDL_BITBUCKET
:
2962 *ppidl
= _ILCreateBitBucket();
2966 *ppidl
= _ILCreateMyComputer();
2970 *ppidl
= _ILCreateNetwork();
2975 WCHAR szPath
[MAX_PATH
];
2977 hr
= SHGetFolderPathW(hwndOwner
, nFolder
, hToken
,
2978 SHGFP_TYPE_CURRENT
, szPath
);
2983 TRACE("Value=%s\n", debugstr_w(szPath
));
2984 hr
= SHILCreateFromPathW(szPath
, ppidl
, &attributes
);
2986 else if (hr
== HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND
))
2988 /* unlike SHGetFolderPath, SHGetFolderLocation in shell32
2989 * version 6.0 returns E_FAIL for nonexistent paths
2998 TRACE("-- (new pidl %p)\n",*ppidl
);
3002 /*************************************************************************
3003 * SHGetSpecialFolderLocation [SHELL32.@]
3006 * In NT5, SHGetSpecialFolderLocation needs the <winntdir>/Recent
3009 HRESULT WINAPI
SHGetSpecialFolderLocation(
3012 LPITEMIDLIST
* ppidl
)
3014 HRESULT hr
= E_INVALIDARG
;
3016 TRACE("(%p,0x%x,%p)\n", hwndOwner
,nFolder
,ppidl
);
3019 return E_INVALIDARG
;
3021 hr
= SHGetFolderLocation(hwndOwner
, nFolder
, NULL
, 0, ppidl
);
3025 static int csidl_from_id( const KNOWNFOLDERID
*id
)
3028 for (i
= 0; i
< sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]); i
++)
3029 if (IsEqualGUID( CSIDL_Data
[i
].id
, id
)) return i
;
3033 /*************************************************************************
3034 * SHGetKnownFolderPath [SHELL32.@]
3036 HRESULT WINAPI
SHGetKnownFolderPath(REFKNOWNFOLDERID rfid
, DWORD flags
, HANDLE token
, PWSTR
*path
)
3039 WCHAR folder
[MAX_PATH
];
3040 int index
= csidl_from_id( rfid
);
3042 TRACE("%s, 0x%08x, %p, %p\n", debugstr_guid(rfid
), flags
, token
, path
);
3047 return HRESULT_FROM_WIN32( ERROR_FILE_NOT_FOUND
);
3049 if (flags
& KF_FLAG_CREATE
)
3050 index
|= CSIDL_FLAG_CREATE
;
3052 if (flags
& KF_FLAG_DONT_VERIFY
)
3053 index
|= CSIDL_FLAG_DONT_VERIFY
;
3055 if (flags
& KF_FLAG_NO_ALIAS
)
3056 index
|= CSIDL_FLAG_NO_ALIAS
;
3058 if (flags
& KF_FLAG_INIT
)
3059 index
|= CSIDL_FLAG_PER_USER_INIT
;
3061 if (flags
& ~(KF_FLAG_CREATE
|KF_FLAG_DONT_VERIFY
|KF_FLAG_NO_ALIAS
|KF_FLAG_INIT
))
3063 FIXME("flags 0x%08x not supported\n", flags
);
3064 return E_INVALIDARG
;
3067 hr
= SHGetFolderPathW( NULL
, index
, token
, 0, folder
);
3070 *path
= CoTaskMemAlloc( (strlenW( folder
) + 1) * sizeof(WCHAR
) );
3072 return E_OUTOFMEMORY
;
3073 strcpyW( *path
, folder
);
3078 /*************************************************************************
3079 * SHGetFolderPathEx [SHELL32.@]
3081 HRESULT WINAPI
SHGetFolderPathEx(REFKNOWNFOLDERID rfid
, DWORD flags
, HANDLE token
, LPWSTR path
, DWORD len
)
3086 TRACE("%s, 0x%08x, %p, %p, %u\n", debugstr_guid(rfid
), flags
, token
, path
, len
);
3088 if (!path
|| !len
) return E_INVALIDARG
;
3090 hr
= SHGetKnownFolderPath( rfid
, flags
, token
, &buffer
);
3091 if (SUCCEEDED( hr
))
3093 if (strlenW( buffer
) + 1 > len
)
3095 CoTaskMemFree( buffer
);
3096 return HRESULT_FROM_WIN32( ERROR_INSUFFICIENT_BUFFER
);
3098 strcpyW( path
, buffer
);
3099 CoTaskMemFree( buffer
);
3104 /* constant values used by known folder functions */
3105 static const WCHAR szCategory
[] = {'C','a','t','e','g','o','r','y',0};
3106 static const WCHAR szName
[] = {'N','a','m','e',0};
3107 static const WCHAR szRelativePath
[] = {'R','e','l','a','t','i','v','e','P','a','t','h',0};
3108 static const WCHAR szParentFolder
[] = {'P','a','r','e','n','t','F','o','l','d','e','r',0};
3111 * Internal function to convert known folder identifier to path of registry key
3112 * associated with known folder.
3115 * rfid [I] pointer to known folder identifier (may be NULL)
3116 * lpStringGuid [I] string with known folder identifier (used when rfid is NULL)
3117 * lpPath [O] place to store string address. String should be
3118 * later freed using HeapFree(GetProcessHeap(),0, ... )
3120 static HRESULT
get_known_folder_registry_path(
3121 REFKNOWNFOLDERID rfid
,
3122 LPWSTR lpStringGuid
,
3125 static const WCHAR sBackslash
[] = {'\\',0};
3130 TRACE("(%s, %s, %p)\n", debugstr_guid(rfid
), debugstr_w(lpStringGuid
), lpPath
);
3133 StringFromGUID2(rfid
, sGuid
, sizeof(sGuid
)/sizeof(sGuid
[0]));
3135 lstrcpyW(sGuid
, lpStringGuid
);
3137 length
= lstrlenW(szKnownFolderDescriptions
)+51;
3138 *lpPath
= HeapAlloc(GetProcessHeap(), 0, length
*sizeof(WCHAR
));
3144 lstrcpyW(*lpPath
, szKnownFolderDescriptions
);
3145 lstrcatW(*lpPath
, sBackslash
);
3146 lstrcatW(*lpPath
, sGuid
);
3153 * Internal function to get place where folder redirection information are stored.
3156 * rfid [I] pointer to known folder identifier (may be NULL)
3157 * rootKey [O] root key where the redirection information are stored
3158 * It can be HKLM for COMMON folders, and HKCU for PERUSER folders.
3159 * However, besides root key, path is always that same, and is stored
3160 * as "szKnownFolderRedirections" constant
3162 static HRESULT
get_known_folder_redirection_place(
3163 REFKNOWNFOLDERID rfid
,
3167 LPWSTR lpRegistryPath
= NULL
;
3168 KF_CATEGORY category
;
3171 /* first, get known folder's category */
3172 hr
= get_known_folder_registry_path(rfid
, NULL
, &lpRegistryPath
);
3176 dwSize
= sizeof(category
);
3177 hr
= HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, lpRegistryPath
, szCategory
, RRF_RT_DWORD
, NULL
, &category
, &dwSize
));
3182 if(category
== KF_CATEGORY_COMMON
)
3184 *rootKey
= HKEY_LOCAL_MACHINE
;
3187 else if(category
== KF_CATEGORY_PERUSER
)
3189 *rootKey
= HKEY_CURRENT_USER
;
3196 HeapFree(GetProcessHeap(), 0, lpRegistryPath
);
3200 static HRESULT
get_known_folder_path_by_id(REFKNOWNFOLDERID folderId
, LPWSTR lpRegistryPath
, DWORD dwFlags
, LPWSTR
*ppszPath
);
3202 static HRESULT
get_known_folder_category(
3203 LPWSTR registryPath
,
3204 KF_CATEGORY
* pCategory
)
3206 DWORD dwSize
= sizeof(DWORD
);
3208 return HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, registryPath
, szCategory
, RRF_RT_DWORD
, &dwType
, pCategory
, &dwSize
));
3211 static HRESULT
redirect_known_folder(
3212 REFKNOWNFOLDERID rfid
,
3214 KF_REDIRECT_FLAGS flags
,
3215 LPCWSTR pszTargetPath
,
3217 KNOWNFOLDERID
const *pExclusion
,
3221 HKEY rootKey
= HKEY_LOCAL_MACHINE
, hKey
;
3223 LPWSTR lpRegistryPath
= NULL
, lpSrcPath
= NULL
;
3224 TRACE("(%s, %p, 0x%08x, %s, %d, %p, %p)\n", debugstr_guid(rfid
), hwnd
, flags
, debugstr_w(pszTargetPath
), cFolders
, pExclusion
, ppszError
);
3226 if (ppszError
) *ppszError
= NULL
;
3228 hr
= get_known_folder_registry_path(rfid
, NULL
, &lpRegistryPath
);
3231 hr
= get_known_folder_path_by_id(rfid
, lpRegistryPath
, 0, &lpSrcPath
);
3233 HeapFree(GetProcessHeap(), 0, lpRegistryPath
);
3235 /* get path to redirection storage */
3237 hr
= get_known_folder_redirection_place(rfid
, &rootKey
);
3239 /* write redirection information */
3241 hr
= HRESULT_FROM_WIN32(RegCreateKeyExW(rootKey
, szKnownFolderRedirections
, 0, NULL
, 0, KEY_WRITE
, NULL
, &hKey
, NULL
));
3245 StringFromGUID2(rfid
, sGuid
, sizeof(sGuid
)/sizeof(sGuid
[0]));
3247 hr
= HRESULT_FROM_WIN32(RegSetValueExW(hKey
, sGuid
, 0, REG_SZ
, (LPBYTE
)pszTargetPath
, (lstrlenW(pszTargetPath
)+1)*sizeof(WCHAR
)));
3252 /* make sure destination path exists */
3253 SHCreateDirectory(NULL
, pszTargetPath
);
3255 /* copy content if required */
3256 if(SUCCEEDED(hr
) && (flags
& KF_REDIRECT_COPY_CONTENTS
) )
3258 static const WCHAR sWildcard
[] = {'\\','*',0};
3259 WCHAR srcPath
[MAX_PATH
+1], dstPath
[MAX_PATH
+1];
3260 SHFILEOPSTRUCTW fileOp
;
3262 ZeroMemory(srcPath
, sizeof(srcPath
));
3263 lstrcpyW(srcPath
, lpSrcPath
);
3264 lstrcatW(srcPath
, sWildcard
);
3266 ZeroMemory(dstPath
, sizeof(dstPath
));
3267 lstrcpyW(dstPath
, pszTargetPath
);
3269 ZeroMemory(&fileOp
, sizeof(fileOp
));
3271 if(flags
& KF_REDIRECT_DEL_SOURCE_CONTENTS
)
3272 fileOp
.wFunc
= FO_MOVE
;
3274 fileOp
.wFunc
= FO_COPY
;
3276 fileOp
.pFrom
= srcPath
;
3277 fileOp
.pTo
= dstPath
;
3278 fileOp
.fFlags
= FOF_NO_UI
;
3280 hr
= (SHFileOperationW(&fileOp
)==0 ? S_OK
: E_FAIL
);
3282 if(flags
& KF_REDIRECT_DEL_SOURCE_CONTENTS
)
3284 ZeroMemory(srcPath
, sizeof(srcPath
));
3285 lstrcpyW(srcPath
, lpSrcPath
);
3287 ZeroMemory(&fileOp
, sizeof(fileOp
));
3288 fileOp
.wFunc
= FO_DELETE
;
3289 fileOp
.pFrom
= srcPath
;
3290 fileOp
.fFlags
= FOF_NO_UI
;
3292 hr
= (SHFileOperationW(&fileOp
)==0 ? S_OK
: E_FAIL
);
3296 CoTaskMemFree(lpSrcPath
);
3304 IKnownFolder IKnownFolder_iface
;
3307 LPWSTR registryPath
;
3310 static inline struct knownfolder
*impl_from_IKnownFolder( IKnownFolder
*iface
)
3312 return CONTAINING_RECORD( iface
, struct knownfolder
, IKnownFolder_iface
);
3315 static ULONG WINAPI
knownfolder_AddRef(
3316 IKnownFolder
*iface
)
3318 struct knownfolder
*knownfolder
= impl_from_IKnownFolder( iface
);
3319 return InterlockedIncrement( &knownfolder
->refs
);
3322 static ULONG WINAPI
knownfolder_Release(
3323 IKnownFolder
*iface
)
3325 struct knownfolder
*knownfolder
= impl_from_IKnownFolder( iface
);
3326 LONG refs
= InterlockedDecrement( &knownfolder
->refs
);
3329 TRACE("destroying %p\n", knownfolder
);
3330 HeapFree( GetProcessHeap(), 0, knownfolder
->registryPath
);
3331 HeapFree( GetProcessHeap(), 0, knownfolder
);
3336 static HRESULT WINAPI
knownfolder_QueryInterface(
3337 IKnownFolder
*iface
,
3341 struct knownfolder
*This
= impl_from_IKnownFolder( iface
);
3343 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppv
);
3345 if ( IsEqualGUID( riid
, &IID_IKnownFolder
) ||
3346 IsEqualGUID( riid
, &IID_IUnknown
) )
3352 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
3353 return E_NOINTERFACE
;
3355 IKnownFolder_AddRef( iface
);
3359 static HRESULT
knownfolder_set_id(
3360 struct knownfolder
*knownfolder
,
3361 const KNOWNFOLDERID
*kfid
)
3366 TRACE("%s\n", debugstr_guid(kfid
));
3368 knownfolder
->id
= *kfid
;
3370 /* check is it registry-registered folder */
3371 hr
= get_known_folder_registry_path(kfid
, NULL
, &knownfolder
->registryPath
);
3373 hr
= HRESULT_FROM_WIN32(RegOpenKeyExW(HKEY_LOCAL_MACHINE
, knownfolder
->registryPath
, 0, 0, &hKey
));
3382 /* This known folder is not registered. To mark it, we set registryPath to NULL */
3383 HeapFree(GetProcessHeap(), 0, knownfolder
->registryPath
);
3384 knownfolder
->registryPath
= NULL
;
3391 static HRESULT WINAPI
knownfolder_GetId(
3392 IKnownFolder
*iface
,
3393 KNOWNFOLDERID
*pkfid
)
3395 struct knownfolder
*knownfolder
= impl_from_IKnownFolder( iface
);
3397 TRACE("%p\n", pkfid
);
3399 *pkfid
= knownfolder
->id
;
3403 static HRESULT WINAPI
knownfolder_GetCategory(
3404 IKnownFolder
*iface
,
3405 KF_CATEGORY
*pCategory
)
3407 struct knownfolder
*knownfolder
= impl_from_IKnownFolder(iface
);
3410 TRACE("%p, %p\n", knownfolder
, pCategory
);
3412 /* we cannot get a category for a folder which is not registered */
3413 if(!knownfolder
->registryPath
)
3417 hr
= get_known_folder_category(knownfolder
->registryPath
, pCategory
);
3422 static HRESULT WINAPI
knownfolder_GetShellItem(
3423 IKnownFolder
*iface
,
3428 FIXME("0x%08x, %s, %p\n", dwFlags
, debugstr_guid(riid
), ppv
);
3432 static HRESULT
get_known_folder_path(
3434 LPWSTR registryPath
,
3437 static const WCHAR sBackslash
[] = {'\\',0};
3439 DWORD dwSize
, dwType
;
3440 WCHAR path
[MAX_PATH
] = {0};
3441 WCHAR parentGuid
[39];
3442 KF_CATEGORY category
;
3443 LPWSTR parentRegistryPath
, parentPath
;
3444 HKEY hRedirectionRootKey
= NULL
;
3446 TRACE("(%s, %p)\n", debugstr_w(registryPath
), ppszPath
);
3449 /* check if folder has parent */
3450 dwSize
= sizeof(parentGuid
);
3451 hr
= HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, registryPath
, szParentFolder
, RRF_RT_REG_SZ
, &dwType
, parentGuid
, &dwSize
));
3452 if(hr
== HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND
)) hr
= S_FALSE
;
3456 /* get parent's known folder path (recursive) */
3457 hr
= get_known_folder_registry_path(NULL
, parentGuid
, &parentRegistryPath
);
3458 if(FAILED(hr
)) return hr
;
3460 hr
= get_known_folder_path(parentGuid
, parentRegistryPath
, &parentPath
);
3462 HeapFree(GetProcessHeap(), 0, parentRegistryPath
);
3466 lstrcatW(path
, parentPath
);
3467 lstrcatW(path
, sBackslash
);
3469 HeapFree(GetProcessHeap(), 0, parentRegistryPath
);
3470 HeapFree(GetProcessHeap(), 0, parentPath
);
3473 /* check, if folder was redirected */
3475 hr
= HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, registryPath
, szCategory
, RRF_RT_REG_DWORD
, NULL
, &category
, &dwSize
));
3479 if(category
== KF_CATEGORY_COMMON
)
3480 hRedirectionRootKey
= HKEY_LOCAL_MACHINE
;
3481 else if(category
== KF_CATEGORY_PERUSER
)
3482 hRedirectionRootKey
= HKEY_CURRENT_USER
;
3484 if(hRedirectionRootKey
)
3486 hr
= HRESULT_FROM_WIN32(RegGetValueW(hRedirectionRootKey
, szKnownFolderRedirections
, sFolderId
, RRF_RT_REG_SZ
, NULL
, NULL
, &dwSize
));
3490 *ppszPath
= CoTaskMemAlloc(dwSize
+(lstrlenW(path
)+1)*sizeof(WCHAR
));
3491 if(!*ppszPath
) hr
= E_OUTOFMEMORY
;
3496 lstrcpyW(*ppszPath
, path
);
3497 hr
= HRESULT_FROM_WIN32(RegGetValueW(hRedirectionRootKey
, szKnownFolderRedirections
, sFolderId
, RRF_RT_REG_SZ
, NULL
, *ppszPath
+ lstrlenW(path
), &dwSize
));
3503 /* no redirection, use previous way - read the relative path from folder definition */
3504 hr
= HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, registryPath
, szRelativePath
, RRF_RT_REG_SZ
, &dwType
, NULL
, &dwSize
));
3508 *ppszPath
= CoTaskMemAlloc(dwSize
+(lstrlenW(path
)+1)*sizeof(WCHAR
));
3509 if(!*ppszPath
) hr
= E_OUTOFMEMORY
;
3514 lstrcpyW(*ppszPath
, path
);
3515 hr
= HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, registryPath
, szRelativePath
, RRF_RT_REG_SZ
, &dwType
, *ppszPath
+ lstrlenW(path
), &dwSize
));
3520 TRACE("returning path: %s\n", debugstr_w(*ppszPath
));
3524 static HRESULT
get_known_folder_path_by_id(
3525 REFKNOWNFOLDERID folderId
,
3526 LPWSTR lpRegistryPath
,
3534 TRACE("(%s, %s, 0x%08x, %p)\n", debugstr_guid(folderId
), debugstr_w(lpRegistryPath
), dwFlags
, ppszPath
);
3536 /* if this is registry-registered known folder, get path from registry */
3539 StringFromGUID2(folderId
, sGuid
, sizeof(sGuid
)/sizeof(sGuid
[0]));
3541 hr
= get_known_folder_path(sGuid
, lpRegistryPath
, ppszPath
);
3543 /* in other case, use older way */
3545 hr
= SHGetKnownFolderPath( folderId
, dwFlags
, NULL
, ppszPath
);
3547 if (FAILED(hr
)) return hr
;
3549 /* check if known folder really exists */
3550 dwAttributes
= GetFileAttributesW(*ppszPath
);
3551 if(dwAttributes
== INVALID_FILE_ATTRIBUTES
|| !(dwAttributes
& FILE_ATTRIBUTE_DIRECTORY
) )
3553 TRACE("directory %s not found\n", debugstr_w(*ppszPath
));
3554 CoTaskMemFree(*ppszPath
);
3556 hr
= HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND
);
3562 static HRESULT WINAPI
knownfolder_GetPath(
3563 IKnownFolder
*iface
,
3567 struct knownfolder
*knownfolder
= impl_from_IKnownFolder( iface
);
3568 TRACE("(%p, 0x%08x, %p)\n", knownfolder
, dwFlags
, ppszPath
);
3570 return get_known_folder_path_by_id(&knownfolder
->id
, knownfolder
->registryPath
, dwFlags
, ppszPath
);
3573 static HRESULT WINAPI
knownfolder_SetPath(
3574 IKnownFolder
*iface
,
3578 struct knownfolder
*knownfolder
= impl_from_IKnownFolder( iface
);
3581 TRACE("(%p, 0x%08x, %s)\n", knownfolder
, dwFlags
, debugstr_w(pszPath
));
3583 /* check if the known folder is registered */
3584 if(!knownfolder
->registryPath
)
3588 hr
= redirect_known_folder(&knownfolder
->id
, NULL
, 0, pszPath
, 0, NULL
, NULL
);
3593 static HRESULT WINAPI
knownfolder_GetIDList(
3594 IKnownFolder
*iface
,
3596 PIDLIST_ABSOLUTE
*ppidl
)
3598 FIXME("0x%08x, %p\n", dwFlags
, ppidl
);
3602 static HRESULT WINAPI
knownfolder_GetFolderType(
3603 IKnownFolder
*iface
,
3604 FOLDERTYPEID
*pftid
)
3606 FIXME("%p\n", pftid
);
3610 static HRESULT WINAPI
knownfolder_GetRedirectionCapabilities(
3611 IKnownFolder
*iface
,
3612 KF_REDIRECTION_CAPABILITIES
*pCapabilities
)
3614 FIXME("%p\n", pCapabilities
);
3618 static HRESULT WINAPI
knownfolder_GetFolderDefinition(
3619 IKnownFolder
*iface
,
3620 KNOWNFOLDER_DEFINITION
*pKFD
)
3622 struct knownfolder
*knownfolder
= impl_from_IKnownFolder( iface
);
3625 TRACE("(%p, %p)\n", knownfolder
, pKFD
);
3627 if(!pKFD
) return E_INVALIDARG
;
3629 ZeroMemory(pKFD
, sizeof(*pKFD
));
3631 hr
= get_known_folder_category(knownfolder
->registryPath
, &pKFD
->category
);
3634 hr
= HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, knownfolder
->registryPath
, szName
, RRF_RT_REG_SZ
, NULL
, NULL
, &dwSize
));
3638 pKFD
->pszName
= CoTaskMemAlloc(dwSize
);
3639 if(!pKFD
->pszName
) hr
= E_OUTOFMEMORY
;
3643 hr
= HRESULT_FROM_WIN32(RegGetValueW(HKEY_LOCAL_MACHINE
, knownfolder
->registryPath
, szName
, RRF_RT_REG_SZ
, NULL
, pKFD
->pszName
, &dwSize
));
3648 static const struct IKnownFolderVtbl knownfolder_vtbl
=
3650 knownfolder_QueryInterface
,
3652 knownfolder_Release
,
3654 knownfolder_GetCategory
,
3655 knownfolder_GetShellItem
,
3656 knownfolder_GetPath
,
3657 knownfolder_SetPath
,
3658 knownfolder_GetIDList
,
3659 knownfolder_GetFolderType
,
3660 knownfolder_GetRedirectionCapabilities
,
3661 knownfolder_GetFolderDefinition
3664 static HRESULT
knownfolder_create( struct knownfolder
**knownfolder
)
3666 struct knownfolder
*kf
;
3668 kf
= HeapAlloc( GetProcessHeap(), 0, sizeof(*kf
) );
3669 if (!kf
) return E_OUTOFMEMORY
;
3671 kf
->IKnownFolder_iface
.lpVtbl
= &knownfolder_vtbl
;
3673 memset( &kf
->id
, 0, sizeof(kf
->id
) );
3674 kf
->registryPath
= NULL
;
3678 TRACE("returning iface %p\n", &kf
->IKnownFolder_iface
);
3682 struct foldermanager
3684 IKnownFolderManager IKnownFolderManager_iface
;
3690 static inline struct foldermanager
*impl_from_IKnownFolderManager( IKnownFolderManager
*iface
)
3692 return CONTAINING_RECORD( iface
, struct foldermanager
, IKnownFolderManager_iface
);
3695 static ULONG WINAPI
foldermanager_AddRef(
3696 IKnownFolderManager
*iface
)
3698 struct foldermanager
*foldermanager
= impl_from_IKnownFolderManager( iface
);
3699 return InterlockedIncrement( &foldermanager
->refs
);
3702 static ULONG WINAPI
foldermanager_Release(
3703 IKnownFolderManager
*iface
)
3705 struct foldermanager
*foldermanager
= impl_from_IKnownFolderManager( iface
);
3706 LONG refs
= InterlockedDecrement( &foldermanager
->refs
);
3709 TRACE("destroying %p\n", foldermanager
);
3710 HeapFree( GetProcessHeap(), 0, foldermanager
->ids
);
3711 HeapFree( GetProcessHeap(), 0, foldermanager
);
3716 static HRESULT WINAPI
foldermanager_QueryInterface(
3717 IKnownFolderManager
*iface
,
3721 struct foldermanager
*This
= impl_from_IKnownFolderManager( iface
);
3723 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppv
);
3725 if ( IsEqualGUID( riid
, &IID_IKnownFolderManager
) ||
3726 IsEqualGUID( riid
, &IID_IUnknown
) )
3732 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
3733 return E_NOINTERFACE
;
3735 IKnownFolderManager_AddRef( iface
);
3739 static HRESULT WINAPI
foldermanager_FolderIdFromCsidl(
3740 IKnownFolderManager
*iface
,
3742 KNOWNFOLDERID
*pfid
)
3744 TRACE("%d, %p\n", nCsidl
, pfid
);
3746 if (nCsidl
>= sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]))
3747 return E_INVALIDARG
;
3748 *pfid
= *CSIDL_Data
[nCsidl
].id
;
3752 static HRESULT WINAPI
foldermanager_FolderIdToCsidl(
3753 IKnownFolderManager
*iface
,
3754 REFKNOWNFOLDERID rfid
,
3759 TRACE("%s, %p\n", debugstr_guid(rfid
), pnCsidl
);
3761 csidl
= csidl_from_id( rfid
);
3762 if (csidl
== -1) return E_INVALIDARG
;
3767 static HRESULT WINAPI
foldermanager_GetFolderIds(
3768 IKnownFolderManager
*iface
,
3769 KNOWNFOLDERID
**ppKFId
,
3772 struct foldermanager
*fm
= impl_from_IKnownFolderManager( iface
);
3774 TRACE("%p, %p\n", ppKFId
, pCount
);
3777 *pCount
= fm
->num_ids
;
3781 static BOOL
is_knownfolder( struct foldermanager
*fm
, const KNOWNFOLDERID
*id
)
3785 LPWSTR registryPath
= NULL
;
3788 /* TODO: move all entries from "CSIDL_Data" static array to registry known folder descriptions */
3789 for (i
= 0; i
< fm
->num_ids
; i
++)
3790 if (IsEqualGUID( &fm
->ids
[i
], id
)) return TRUE
;
3792 hr
= get_known_folder_registry_path(id
, NULL
, ®istryPath
);
3795 hr
= HRESULT_FROM_WIN32(RegOpenKeyExW(HKEY_LOCAL_MACHINE
, registryPath
, 0, 0, &hKey
));
3796 HeapFree(GetProcessHeap(), 0, registryPath
);
3808 static HRESULT WINAPI
foldermanager_GetFolder(
3809 IKnownFolderManager
*iface
,
3810 REFKNOWNFOLDERID rfid
,
3811 IKnownFolder
**ppkf
)
3813 struct foldermanager
*fm
= impl_from_IKnownFolderManager( iface
);
3814 struct knownfolder
*kf
;
3817 TRACE("%s, %p\n", debugstr_guid(rfid
), ppkf
);
3819 if (!is_knownfolder( fm
, rfid
))
3821 WARN("unknown folder\n");
3822 return E_INVALIDARG
;
3824 hr
= knownfolder_create( &kf
);
3825 if (SUCCEEDED( hr
))
3827 hr
= knownfolder_set_id( kf
, rfid
);
3828 *ppkf
= &kf
->IKnownFolder_iface
;
3836 static HRESULT WINAPI
foldermanager_GetFolderByName(
3837 IKnownFolderManager
*iface
,
3838 LPCWSTR pszCanonicalName
,
3839 IKnownFolder
**ppkf
)
3841 FIXME("%s, %p\n", debugstr_w(pszCanonicalName
), ppkf
);
3845 static HRESULT WINAPI
foldermanager_RegisterFolder(
3846 IKnownFolderManager
*iface
,
3847 REFKNOWNFOLDERID rfid
,
3848 KNOWNFOLDER_DEFINITION
const *pKFD
)
3853 LPWSTR registryPath
= NULL
;
3854 TRACE("(%p, %s, %p)\n", iface
, debugstr_guid(rfid
), pKFD
);
3856 hr
= get_known_folder_registry_path(rfid
, NULL
, ®istryPath
);
3857 TRACE("registry path: %s\n", debugstr_w(registryPath
));
3860 hr
= HRESULT_FROM_WIN32(RegCreateKeyExW(HKEY_LOCAL_MACHINE
, registryPath
, 0, NULL
, 0, KEY_WRITE
, 0, &hKey
, &dwDisp
));
3864 if(dwDisp
== REG_OPENED_EXISTING_KEY
)
3868 hr
= HRESULT_FROM_WIN32(RegSetValueExW(hKey
, szCategory
, 0, REG_DWORD
, (LPBYTE
)&pKFD
->category
, sizeof(pKFD
->category
)));
3871 hr
= HRESULT_FROM_WIN32(RegSetValueExW(hKey
, szName
, 0, REG_SZ
, (LPBYTE
)pKFD
->pszName
, (lstrlenW(pKFD
->pszName
)+1)*sizeof(WCHAR
) ));
3873 if(SUCCEEDED(hr
) && !IsEqualGUID(&pKFD
->fidParent
, &GUID_NULL
))
3875 WCHAR sParentGuid
[39];
3876 StringFromGUID2(&pKFD
->fidParent
, sParentGuid
, sizeof(sParentGuid
)/sizeof(sParentGuid
[0]));
3878 /* this known folder has parent folder */
3879 hr
= HRESULT_FROM_WIN32(RegSetValueExW(hKey
, szParentFolder
, 0, REG_SZ
, (LPBYTE
)sParentGuid
, sizeof(sParentGuid
)));
3882 if(SUCCEEDED(hr
) && pKFD
->category
!= KF_CATEGORY_VIRTUAL
)
3884 if(!pKFD
->pszRelativePath
)
3888 hr
= HRESULT_FROM_WIN32(RegSetValueExW(hKey
, szRelativePath
, 0, REG_SZ
, (LPBYTE
)pKFD
->pszRelativePath
, (lstrlenW(pKFD
->pszRelativePath
)+1)*sizeof(WCHAR
) ));
3894 SHDeleteKeyW(HKEY_LOCAL_MACHINE
, registryPath
);
3897 HeapFree(GetProcessHeap(), 0, registryPath
);
3901 static HRESULT WINAPI
foldermanager_UnregisterFolder(
3902 IKnownFolderManager
*iface
,
3903 REFKNOWNFOLDERID rfid
)
3906 LPWSTR registryPath
= NULL
;
3907 TRACE("(%p, %s)\n", iface
, debugstr_guid(rfid
));
3909 hr
= get_known_folder_registry_path(rfid
, NULL
, ®istryPath
);
3912 hr
= HRESULT_FROM_WIN32(SHDeleteKeyW(HKEY_LOCAL_MACHINE
, registryPath
));
3914 HeapFree(GetProcessHeap(), 0, registryPath
);
3918 static HRESULT WINAPI
foldermanager_FindFolderFromPath(
3919 IKnownFolderManager
*iface
,
3922 IKnownFolder
**ppkf
)
3924 FIXME("%s, 0x%08x, %p\n", debugstr_w(pszPath
), mode
, ppkf
);
3928 static HRESULT WINAPI
foldermanager_FindFolderFromIDList(
3929 IKnownFolderManager
*iface
,
3930 PCIDLIST_ABSOLUTE pidl
,
3931 IKnownFolder
**ppkf
)
3933 FIXME("%p, %p\n", pidl
, ppkf
);
3937 static HRESULT WINAPI
foldermanager_Redirect(
3938 IKnownFolderManager
*iface
,
3939 REFKNOWNFOLDERID rfid
,
3941 KF_REDIRECT_FLAGS flags
,
3942 LPCWSTR pszTargetPath
,
3944 KNOWNFOLDERID
const *pExclusion
,
3947 return redirect_known_folder(rfid
, hwnd
, flags
, pszTargetPath
, cFolders
, pExclusion
, ppszError
);
3950 static const struct IKnownFolderManagerVtbl foldermanager_vtbl
=
3952 foldermanager_QueryInterface
,
3953 foldermanager_AddRef
,
3954 foldermanager_Release
,
3955 foldermanager_FolderIdFromCsidl
,
3956 foldermanager_FolderIdToCsidl
,
3957 foldermanager_GetFolderIds
,
3958 foldermanager_GetFolder
,
3959 foldermanager_GetFolderByName
,
3960 foldermanager_RegisterFolder
,
3961 foldermanager_UnregisterFolder
,
3962 foldermanager_FindFolderFromPath
,
3963 foldermanager_FindFolderFromIDList
,
3964 foldermanager_Redirect
3967 static HRESULT
foldermanager_create( void **ppv
)
3970 struct foldermanager
*fm
;
3972 fm
= HeapAlloc( GetProcessHeap(), 0, sizeof(*fm
) );
3973 if (!fm
) return E_OUTOFMEMORY
;
3975 fm
->IKnownFolderManager_iface
.lpVtbl
= &foldermanager_vtbl
;
3979 for (i
= 0; i
< sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]); i
++)
3981 if (!IsEqualGUID( CSIDL_Data
[i
].id
, &GUID_NULL
)) fm
->num_ids
++;
3983 fm
->ids
= HeapAlloc( GetProcessHeap(), 0, fm
->num_ids
* sizeof(KNOWNFOLDERID
) );
3986 HeapFree( GetProcessHeap(), 0, fm
);
3987 return E_OUTOFMEMORY
;
3989 for (i
= j
= 0; i
< sizeof(CSIDL_Data
) / sizeof(CSIDL_Data
[0]); i
++)
3991 if (!IsEqualGUID( CSIDL_Data
[i
].id
, &GUID_NULL
))
3993 fm
->ids
[j
] = *CSIDL_Data
[i
].id
;
3997 TRACE("found %u known folders\n", fm
->num_ids
);
3998 *ppv
= &fm
->IKnownFolderManager_iface
;
4000 TRACE("returning iface %p\n", *ppv
);
4004 HRESULT WINAPI
KnownFolderManager_Constructor( IUnknown
*punk
, REFIID riid
, void **ppv
)
4006 TRACE("%p, %s, %p\n", punk
, debugstr_guid(riid
), ppv
);
4011 return CLASS_E_NOAGGREGATION
;
4013 return foldermanager_create( ppv
);
4016 HRESULT WINAPI
SHGetKnownFolderIDList(REFKNOWNFOLDERID rfid
, DWORD flags
, HANDLE token
, PIDLIST_ABSOLUTE
*pidl
)
4018 FIXME("%s, 0x%08x, %p, %p\n", debugstr_guid(rfid
), flags
, token
, pidl
);