4 * Copyright 2000 Juergen Schmied
5 * Copyright 2002 Andriy Palamarchuk
6 * Copyright 2004 Dietrich Teickner (from Odin)
7 * Copyright 2004 Rolf Kalbermatter
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
40 #define NO_SHLWAPI_STREAM
42 #include "shell32_main.h"
43 #include "undocshell.h"
44 #include "wine/debug.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(shell
);
49 #define IsAttrib(x, y) ((INVALID_FILE_ATTRIBUTES != (x)) && ((x) & (y)))
50 #define IsAttribFile(x) (!((x) & FILE_ATTRIBUTE_DIRECTORY))
51 #define IsAttribDir(x) IsAttrib(x, FILE_ATTRIBUTE_DIRECTORY)
52 #define IsDotDir(x) ((x[0] == '.') && ((x[1] == 0) || ((x[1] == '.') && (x[2] == 0))))
56 static const WCHAR wWildcardFile
[] = {'*',0};
57 static const WCHAR wWildcardChars
[] = {'*','?',0};
59 static DWORD
SHNotifyCreateDirectoryA(LPCSTR path
, LPSECURITY_ATTRIBUTES sec
);
60 static DWORD
SHNotifyCreateDirectoryW(LPCWSTR path
, LPSECURITY_ATTRIBUTES sec
);
61 static DWORD
SHNotifyRemoveDirectoryA(LPCSTR path
);
62 static DWORD
SHNotifyRemoveDirectoryW(LPCWSTR path
);
63 static DWORD
SHNotifyDeleteFileA(LPCSTR path
);
64 static DWORD
SHNotifyDeleteFileW(LPCWSTR path
);
65 static DWORD
SHNotifyMoveFileW(LPCWSTR src
, LPCWSTR dest
);
66 static DWORD
SHNotifyCopyFileW(LPCWSTR src
, LPCWSTR dest
, BOOL bFailIfExists
);
67 static DWORD
SHFindAttrW(LPCWSTR pName
, BOOL fileOnly
);
77 /* Confirm dialogs with an optional "Yes To All" as used in file operations confirmations
79 static const WCHAR CONFIRM_MSG_PROP
[] = {'W','I','N','E','_','C','O','N','F','I','R','M',0};
81 struct confirm_msg_info
89 /* as some buttons may be hidden and the dialog height may change we may need
90 * to move the controls */
91 static void confirm_msg_move_button(HWND hDlg
, INT iId
, INT
*xPos
, INT yOffset
, BOOL bShow
)
93 HWND hButton
= GetDlgItem(hDlg
, iId
);
100 GetWindowRect(hButton
, &r
);
101 width
= r
.right
- r
.left
;
104 ScreenToClient(hDlg
, &pt
);
105 MoveWindow(hButton
, *xPos
- width
, pt
.y
- yOffset
, width
, r
.bottom
- r
.top
, FALSE
);
109 ShowWindow(hButton
, SW_HIDE
);
112 /* Note: we paint the text manually and don't use the static control to make
113 * sure the text has the same height as the one computed in WM_INITDIALOG
115 static INT_PTR CALLBACK
ConfirmMsgBox_Paint(HWND hDlg
)
122 BeginPaint(hDlg
, &ps
);
125 GetClientRect(GetDlgItem(hDlg
, IDD_MESSAGE
), &r
);
126 /* this will remap the rect to dialog coords */
127 MapWindowPoints(GetDlgItem(hDlg
, IDD_MESSAGE
), hDlg
, (LPPOINT
)&r
, 2);
128 hOldFont
= SelectObject(hdc
, (HFONT
)SendDlgItemMessageW(hDlg
, IDD_MESSAGE
, WM_GETFONT
, 0, 0));
129 DrawTextW(hdc
, (LPWSTR
)GetPropW(hDlg
, CONFIRM_MSG_PROP
), -1, &r
, DT_NOPREFIX
| DT_PATH_ELLIPSIS
| DT_WORDBREAK
);
130 SelectObject(hdc
, hOldFont
);
135 static INT_PTR CALLBACK
ConfirmMsgBox_Init(HWND hDlg
, LPARAM lParam
)
137 struct confirm_msg_info
*info
= (struct confirm_msg_info
*)lParam
;
144 SetWindowTextW(hDlg
, info
->lpszCaption
);
145 ShowWindow(GetDlgItem(hDlg
, IDD_MESSAGE
), SW_HIDE
);
146 SetPropW(hDlg
, CONFIRM_MSG_PROP
, (HANDLE
)info
->lpszText
);
147 SendDlgItemMessageW(hDlg
, IDD_ICON
, STM_SETICON
, (WPARAM
)info
->hIcon
, 0);
149 /* compute the text height and resize the dialog */
150 GetClientRect(GetDlgItem(hDlg
, IDD_MESSAGE
), &r
);
153 hOldFont
= SelectObject(hdc
, (HFONT
)SendDlgItemMessageW(hDlg
, IDD_MESSAGE
, WM_GETFONT
, 0, 0));
154 DrawTextW(hdc
, info
->lpszText
, -1, &r
, DT_NOPREFIX
| DT_PATH_ELLIPSIS
| DT_WORDBREAK
| DT_CALCRECT
);
155 SelectObject(hdc
, hOldFont
);
157 yOffset
= min(yOffset
, 35); /* don't make the dialog too small */
158 ReleaseDC(hDlg
, hdc
);
160 GetClientRect(hDlg
, &r
);
162 GetWindowRect(hDlg
, &r
);
163 width
= r
.right
- r
.left
;
164 height
= r
.bottom
- r
.top
- yOffset
;
165 MoveWindow(hDlg
, (GetSystemMetrics(SM_CXSCREEN
) - width
)/2,
166 (GetSystemMetrics(SM_CYSCREEN
) - height
)/2, width
, height
, FALSE
);
168 confirm_msg_move_button(hDlg
, IDCANCEL
, &xPos
, yOffset
, info
->bYesToAll
);
169 confirm_msg_move_button(hDlg
, IDNO
, &xPos
, yOffset
, TRUE
);
170 confirm_msg_move_button(hDlg
, IDD_YESTOALL
, &xPos
, yOffset
, info
->bYesToAll
);
171 confirm_msg_move_button(hDlg
, IDYES
, &xPos
, yOffset
, TRUE
);
175 static INT_PTR CALLBACK
ConfirmMsgBoxProc(HWND hDlg
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
180 return ConfirmMsgBox_Init(hDlg
, lParam
);
182 return ConfirmMsgBox_Paint(hDlg
);
184 EndDialog(hDlg
, wParam
);
187 EndDialog(hDlg
, IDCANCEL
);
193 static int SHELL_ConfirmMsgBox(HWND hWnd
, LPWSTR lpszText
, LPWSTR lpszCaption
, HICON hIcon
, BOOL bYesToAll
)
195 static const WCHAR wszTemplate
[] = {'S','H','E','L','L','_','Y','E','S','T','O','A','L','L','_','M','S','G','B','O','X',0};
196 struct confirm_msg_info info
;
198 info
.lpszText
= lpszText
;
199 info
.lpszCaption
= lpszCaption
;
201 info
.bYesToAll
= bYesToAll
;
202 return DialogBoxParamW(shell32_hInstance
, wszTemplate
, hWnd
, ConfirmMsgBoxProc
, (LPARAM
)&info
);
205 /* confirmation dialogs content */
208 HINSTANCE hIconInstance
;
209 UINT icon_resource_id
;
210 UINT caption_resource_id
, text_resource_id
;
211 } SHELL_ConfirmIDstruc
;
213 static BOOL
SHELL_ConfirmIDs(int nKindOfDialog
, SHELL_ConfirmIDstruc
*ids
)
215 ids
->hIconInstance
= shell32_hInstance
;
216 switch (nKindOfDialog
) {
217 case ASK_DELETE_FILE
:
218 ids
->icon_resource_id
= IDI_SHELL_CONFIRM_DELETE
;
219 ids
->caption_resource_id
= IDS_DELETEITEM_CAPTION
;
220 ids
->text_resource_id
= IDS_DELETEITEM_TEXT
;
222 case ASK_DELETE_FOLDER
:
223 ids
->icon_resource_id
= IDI_SHELL_CONFIRM_DELETE
;
224 ids
->caption_resource_id
= IDS_DELETEFOLDER_CAPTION
;
225 ids
->text_resource_id
= IDS_DELETEITEM_TEXT
;
227 case ASK_DELETE_MULTIPLE_ITEM
:
228 ids
->icon_resource_id
= IDI_SHELL_CONFIRM_DELETE
;
229 ids
->caption_resource_id
= IDS_DELETEITEM_CAPTION
;
230 ids
->text_resource_id
= IDS_DELETEMULTIPLE_TEXT
;
233 ids
->icon_resource_id
= IDI_SHELL_TRASH_FILE
;
234 ids
->caption_resource_id
= IDS_DELETEITEM_CAPTION
;
235 ids
->text_resource_id
= IDS_TRASHITEM_TEXT
;
237 case ASK_TRASH_FOLDER
:
238 ids
->icon_resource_id
= IDI_SHELL_TRASH_FILE
;
239 ids
->caption_resource_id
= IDS_DELETEFOLDER_CAPTION
;
240 ids
->text_resource_id
= IDS_TRASHFOLDER_TEXT
;
242 case ASK_TRASH_MULTIPLE_ITEM
:
243 ids
->icon_resource_id
= IDI_SHELL_TRASH_FILE
;
244 ids
->caption_resource_id
= IDS_DELETEITEM_CAPTION
;
245 ids
->text_resource_id
= IDS_TRASHMULTIPLE_TEXT
;
247 case ASK_CANT_TRASH_ITEM
:
248 ids
->icon_resource_id
= IDI_SHELL_CONFIRM_DELETE
;
249 ids
->caption_resource_id
= IDS_DELETEITEM_CAPTION
;
250 ids
->text_resource_id
= IDS_CANTTRASH_TEXT
;
252 case ASK_DELETE_SELECTED
:
253 ids
->icon_resource_id
= IDI_SHELL_CONFIRM_DELETE
;
254 ids
->caption_resource_id
= IDS_DELETEITEM_CAPTION
;
255 ids
->text_resource_id
= IDS_DELETESELECTED_TEXT
;
257 case ASK_OVERWRITE_FILE
:
258 ids
->hIconInstance
= NULL
;
259 ids
->icon_resource_id
= IDI_WARNING
;
260 ids
->caption_resource_id
= IDS_OVERWRITEFILE_CAPTION
;
261 ids
->text_resource_id
= IDS_OVERWRITEFILE_TEXT
;
263 case ASK_OVERWRITE_FOLDER
:
264 ids
->hIconInstance
= NULL
;
265 ids
->icon_resource_id
= IDI_WARNING
;
266 ids
->caption_resource_id
= IDS_OVERWRITEFILE_CAPTION
;
267 ids
->text_resource_id
= IDS_OVERWRITEFOLDER_TEXT
;
270 FIXME(" Unhandled nKindOfDialog %d stub\n", nKindOfDialog
);
275 static BOOL
SHELL_ConfirmDialogW(HWND hWnd
, int nKindOfDialog
, LPCWSTR szDir
, FILE_OPERATION
*op
)
277 WCHAR szCaption
[255], szText
[255], szBuffer
[MAX_PATH
+ 256];
278 SHELL_ConfirmIDstruc ids
;
283 assert(nKindOfDialog
>= 0 && nKindOfDialog
< 32);
284 if (op
&& (op
->dwYesToAllMask
& (1 << nKindOfDialog
)))
287 if (!SHELL_ConfirmIDs(nKindOfDialog
, &ids
)) return FALSE
;
289 LoadStringW(shell32_hInstance
, ids
.caption_resource_id
, szCaption
, sizeof(szCaption
)/sizeof(WCHAR
));
290 LoadStringW(shell32_hInstance
, ids
.text_resource_id
, szText
, sizeof(szText
)/sizeof(WCHAR
));
292 args
[0] = (DWORD_PTR
)szDir
;
293 FormatMessageW(FORMAT_MESSAGE_FROM_STRING
|FORMAT_MESSAGE_ARGUMENT_ARRAY
,
294 szText
, 0, 0, szBuffer
, sizeof(szBuffer
), (va_list*)args
);
295 hIcon
= LoadIconW(ids
.hIconInstance
, (LPWSTR
)MAKEINTRESOURCE(ids
.icon_resource_id
));
297 ret
= SHELL_ConfirmMsgBox(hWnd
, szBuffer
, szCaption
, hIcon
, op
&& op
->bManyItems
);
299 if (ret
== IDD_YESTOALL
) {
300 op
->dwYesToAllMask
|= (1 << nKindOfDialog
);
304 op
->bCancelled
= TRUE
;
306 op
->req
->fAnyOperationsAborted
= TRUE
;
311 BOOL
SHELL_ConfirmYesNoW(HWND hWnd
, int nKindOfDialog
, LPCWSTR szDir
)
313 return SHELL_ConfirmDialogW(hWnd
, nKindOfDialog
, szDir
, NULL
);
316 static DWORD
SHELL32_AnsiToUnicodeBuf(LPCSTR aPath
, LPWSTR
*wPath
, DWORD minChars
)
318 DWORD len
= MultiByteToWideChar(CP_ACP
, 0, aPath
, -1, NULL
, 0);
323 *wPath
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
326 MultiByteToWideChar(CP_ACP
, 0, aPath
, -1, *wPath
, len
);
329 return E_OUTOFMEMORY
;
332 static void SHELL32_FreeUnicodeBuf(LPWSTR wPath
)
334 HeapFree(GetProcessHeap(), 0, wPath
);
337 HRESULT WINAPI
SHIsFileAvailableOffline(LPCWSTR path
, LPDWORD status
)
339 FIXME("(%s, %p) stub\n", debugstr_w(path
), status
);
343 /**************************************************************************
344 * SHELL_DeleteDirectory() [internal]
346 * Asks for confirmation when bShowUI is true and deletes the directory and
347 * all its subdirectories and files if necessary.
349 BOOL
SHELL_DeleteDirectoryW(HWND hwnd
, LPCWSTR pszDir
, BOOL bShowUI
)
353 WIN32_FIND_DATAW wfd
;
354 WCHAR szTemp
[MAX_PATH
];
356 /* Make sure the directory exists before eventually prompting the user */
357 PathCombineW(szTemp
, pszDir
, wWildcardFile
);
358 hFind
= FindFirstFileW(szTemp
, &wfd
);
359 if (hFind
== INVALID_HANDLE_VALUE
)
362 if (!bShowUI
|| (ret
= SHELL_ConfirmDialogW(hwnd
, ASK_DELETE_FOLDER
, pszDir
, NULL
)))
366 if (IsDotDir(wfd
.cFileName
))
368 PathCombineW(szTemp
, pszDir
, wfd
.cFileName
);
369 if (FILE_ATTRIBUTE_DIRECTORY
& wfd
.dwFileAttributes
)
370 ret
= SHELL_DeleteDirectoryW(hwnd
, szTemp
, FALSE
);
372 ret
= (SHNotifyDeleteFileW(szTemp
) == ERROR_SUCCESS
);
373 } while (ret
&& FindNextFileW(hFind
, &wfd
));
377 ret
= (SHNotifyRemoveDirectoryW(pszDir
) == ERROR_SUCCESS
);
381 /**************************************************************************
382 * Win32CreateDirectory [SHELL32.93]
384 * Creates a directory. Also triggers a change notify if one exists.
387 * path [I] path to directory to create
390 * TRUE if successful, FALSE otherwise
393 * Verified on Win98 / IE 5 (SHELL32 4.72, March 1999 build) to be ANSI.
394 * This is Unicode on NT/2000
396 static DWORD
SHNotifyCreateDirectoryA(LPCSTR path
, LPSECURITY_ATTRIBUTES sec
)
401 TRACE("(%s, %p)\n", debugstr_a(path
), sec
);
403 retCode
= SHELL32_AnsiToUnicodeBuf(path
, &wPath
, 0);
406 retCode
= SHNotifyCreateDirectoryW(wPath
, sec
);
407 SHELL32_FreeUnicodeBuf(wPath
);
412 /**********************************************************************/
414 static DWORD
SHNotifyCreateDirectoryW(LPCWSTR path
, LPSECURITY_ATTRIBUTES sec
)
416 TRACE("(%s, %p)\n", debugstr_w(path
), sec
);
418 if (CreateDirectoryW(path
, sec
))
420 SHChangeNotify(SHCNE_MKDIR
, SHCNF_PATHW
, path
, NULL
);
421 return ERROR_SUCCESS
;
423 return GetLastError();
426 /**********************************************************************/
428 BOOL WINAPI
Win32CreateDirectoryAW(LPCVOID path
, LPSECURITY_ATTRIBUTES sec
)
430 if (SHELL_OsIsUnicode())
431 return (SHNotifyCreateDirectoryW(path
, sec
) == ERROR_SUCCESS
);
432 return (SHNotifyCreateDirectoryA(path
, sec
) == ERROR_SUCCESS
);
435 /************************************************************************
436 * Win32RemoveDirectory [SHELL32.94]
438 * Deletes a directory. Also triggers a change notify if one exists.
441 * path [I] path to directory to delete
444 * TRUE if successful, FALSE otherwise
447 * Verified on Win98 / IE 5 (SHELL32 4.72, March 1999 build) to be ANSI.
448 * This is Unicode on NT/2000
450 static DWORD
SHNotifyRemoveDirectoryA(LPCSTR path
)
455 TRACE("(%s)\n", debugstr_a(path
));
457 retCode
= SHELL32_AnsiToUnicodeBuf(path
, &wPath
, 0);
460 retCode
= SHNotifyRemoveDirectoryW(wPath
);
461 SHELL32_FreeUnicodeBuf(wPath
);
466 /***********************************************************************/
468 static DWORD
SHNotifyRemoveDirectoryW(LPCWSTR path
)
471 TRACE("(%s)\n", debugstr_w(path
));
473 ret
= RemoveDirectoryW(path
);
476 /* Directory may be write protected */
477 DWORD dwAttr
= GetFileAttributesW(path
);
478 if (IsAttrib(dwAttr
, FILE_ATTRIBUTE_READONLY
))
479 if (SetFileAttributesW(path
, dwAttr
& ~FILE_ATTRIBUTE_READONLY
))
480 ret
= RemoveDirectoryW(path
);
484 SHChangeNotify(SHCNE_RMDIR
, SHCNF_PATHW
, path
, NULL
);
485 return ERROR_SUCCESS
;
487 return GetLastError();
490 /***********************************************************************/
492 BOOL WINAPI
Win32RemoveDirectoryAW(LPCVOID path
)
494 if (SHELL_OsIsUnicode())
495 return (SHNotifyRemoveDirectoryW(path
) == ERROR_SUCCESS
);
496 return (SHNotifyRemoveDirectoryA(path
) == ERROR_SUCCESS
);
499 /************************************************************************
500 * Win32DeleteFile [SHELL32.164]
502 * Deletes a file. Also triggers a change notify if one exists.
505 * path [I] path to file to delete
508 * TRUE if successful, FALSE otherwise
511 * Verified on Win98 / IE 5 (SHELL32 4.72, March 1999 build) to be ANSI.
512 * This is Unicode on NT/2000
514 static DWORD
SHNotifyDeleteFileA(LPCSTR path
)
519 TRACE("(%s)\n", debugstr_a(path
));
521 retCode
= SHELL32_AnsiToUnicodeBuf(path
, &wPath
, 0);
524 retCode
= SHNotifyDeleteFileW(wPath
);
525 SHELL32_FreeUnicodeBuf(wPath
);
530 /***********************************************************************/
532 static DWORD
SHNotifyDeleteFileW(LPCWSTR path
)
536 TRACE("(%s)\n", debugstr_w(path
));
538 ret
= DeleteFileW(path
);
541 /* File may be write protected or a system file */
542 DWORD dwAttr
= GetFileAttributesW(path
);
543 if (IsAttrib(dwAttr
, FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_SYSTEM
))
544 if (SetFileAttributesW(path
, dwAttr
& ~(FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_SYSTEM
)))
545 ret
= DeleteFileW(path
);
549 SHChangeNotify(SHCNE_DELETE
, SHCNF_PATHW
, path
, NULL
);
550 return ERROR_SUCCESS
;
552 return GetLastError();
555 /***********************************************************************/
557 DWORD WINAPI
Win32DeleteFileAW(LPCVOID path
)
559 if (SHELL_OsIsUnicode())
560 return (SHNotifyDeleteFileW(path
) == ERROR_SUCCESS
);
561 return (SHNotifyDeleteFileA(path
) == ERROR_SUCCESS
);
564 /************************************************************************
565 * SHNotifyMoveFile [internal]
567 * Moves a file. Also triggers a change notify if one exists.
570 * src [I] path to source file to move
571 * dest [I] path to target file to move to
574 * ERORR_SUCCESS if successful
576 static DWORD
SHNotifyMoveFileW(LPCWSTR src
, LPCWSTR dest
)
580 TRACE("(%s %s)\n", debugstr_w(src
), debugstr_w(dest
));
582 ret
= MoveFileExW(src
, dest
, MOVEFILE_REPLACE_EXISTING
);
584 /* MOVEFILE_REPLACE_EXISTING fails with dirs, so try MoveFile */
586 ret
= MoveFileW(src
, dest
);
592 dwAttr
= SHFindAttrW(dest
, FALSE
);
593 if (INVALID_FILE_ATTRIBUTES
== dwAttr
)
595 /* Source file may be write protected or a system file */
596 dwAttr
= GetFileAttributesW(src
);
597 if (IsAttrib(dwAttr
, FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_SYSTEM
))
598 if (SetFileAttributesW(src
, dwAttr
& ~(FILE_ATTRIBUTE_READONLY
| FILE_ATTRIBUTE_SYSTEM
)))
599 ret
= MoveFileW(src
, dest
);
604 SHChangeNotify(SHCNE_RENAMEITEM
, SHCNF_PATHW
, src
, dest
);
605 return ERROR_SUCCESS
;
607 return GetLastError();
610 /************************************************************************
611 * SHNotifyCopyFile [internal]
613 * Copies a file. Also triggers a change notify if one exists.
616 * src [I] path to source file to move
617 * dest [I] path to target file to move to
618 * bFailIfExists [I] if TRUE, the target file will not be overwritten if
619 * a file with this name already exists
622 * ERROR_SUCCESS if successful
624 static DWORD
SHNotifyCopyFileW(LPCWSTR src
, LPCWSTR dest
, BOOL bFailIfExists
)
628 TRACE("(%s %s %s)\n", debugstr_w(src
), debugstr_w(dest
), bFailIfExists
? "failIfExists" : "");
630 ret
= CopyFileW(src
, dest
, bFailIfExists
);
633 SHChangeNotify(SHCNE_CREATE
, SHCNF_PATHW
, dest
, NULL
);
634 return ERROR_SUCCESS
;
637 return GetLastError();
640 /*************************************************************************
641 * SHCreateDirectory [SHELL32.165]
643 * This function creates a file system folder whose fully qualified path is
644 * given by path. If one or more of the intermediate folders do not exist,
645 * they will be created as well.
649 * path [I] path of directory to create
652 * ERRROR_SUCCESS or one of the following values:
653 * ERROR_BAD_PATHNAME if the path is relative
654 * ERROR_FILE_EXISTS when a file with that name exists
655 * ERROR_PATH_NOT_FOUND can't find the path, probably invalid
656 * ERROR_INVLID_NAME if the path contains invalid chars
657 * ERROR_ALREADY_EXISTS when the directory already exists
658 * ERROR_FILENAME_EXCED_RANGE if the filename was to long to process
661 * exported by ordinal
663 * WinNT/2000 exports Unicode
665 DWORD WINAPI
SHCreateDirectory(HWND hWnd
, LPCVOID path
)
667 if (SHELL_OsIsUnicode())
668 return SHCreateDirectoryExW(hWnd
, path
, NULL
);
669 return SHCreateDirectoryExA(hWnd
, path
, NULL
);
672 /*************************************************************************
673 * SHCreateDirectoryExA [SHELL32.@]
675 * This function creates a file system folder whose fully qualified path is
676 * given by path. If one or more of the intermediate folders do not exist,
677 * they will be created as well.
681 * path [I] path of directory to create
682 * sec [I] security attributes to use or NULL
685 * ERRROR_SUCCESS or one of the following values:
686 * ERROR_BAD_PATHNAME or ERROR_PATH_NOT_FOUND if the path is relative
687 * ERROR_INVLID_NAME if the path contains invalid chars
688 * ERROR_FILE_EXISTS when a file with that name exists
689 * ERROR_ALREADY_EXISTS when the directory already exists
690 * ERROR_FILENAME_EXCED_RANGE if the filename was to long to process
692 * FIXME: Not implemented yet;
693 * SHCreateDirectoryEx also verifies that the files in the directory will be visible
694 * if the path is a network path to deal with network drivers which might have a limited
695 * but unknown maximum path length. If not:
697 * If hWnd is set to a valid window handle, a message box is displayed warning
698 * the user that the files may not be accessible. If the user chooses not to
699 * proceed, the function returns ERROR_CANCELLED.
701 * If hWnd is set to NULL, no user interface is displayed and the function
702 * returns ERROR_CANCELLED.
704 int WINAPI
SHCreateDirectoryExA(HWND hWnd
, LPCSTR path
, LPSECURITY_ATTRIBUTES sec
)
709 TRACE("(%s, %p)\n", debugstr_a(path
), sec
);
711 retCode
= SHELL32_AnsiToUnicodeBuf(path
, &wPath
, 0);
714 retCode
= SHCreateDirectoryExW(hWnd
, wPath
, sec
);
715 SHELL32_FreeUnicodeBuf(wPath
);
720 /*************************************************************************
721 * SHCreateDirectoryExW [SHELL32.@]
723 * See SHCreateDirectoryExA.
725 int WINAPI
SHCreateDirectoryExW(HWND hWnd
, LPCWSTR path
, LPSECURITY_ATTRIBUTES sec
)
727 int ret
= ERROR_BAD_PATHNAME
;
728 TRACE("(%p, %s, %p)\n", hWnd
, debugstr_w(path
), sec
);
730 if (PathIsRelativeW(path
))
736 ret
= SHNotifyCreateDirectoryW(path
, sec
);
737 /* Refuse to work on certain error codes before trying to create directories recursively */
738 if (ret
!= ERROR_SUCCESS
&&
739 ret
!= ERROR_FILE_EXISTS
&&
740 ret
!= ERROR_ALREADY_EXISTS
&&
741 ret
!= ERROR_FILENAME_EXCED_RANGE
)
743 WCHAR
*pEnd
, *pSlash
, szTemp
[MAX_PATH
+ 1]; /* extra for PathAddBackslash() */
745 lstrcpynW(szTemp
, path
, MAX_PATH
);
746 pEnd
= PathAddBackslashW(szTemp
);
751 while (*pSlash
&& *pSlash
!= '\\') pSlash
++;
754 *pSlash
= 0; /* terminate path at separator */
756 ret
= SHNotifyCreateDirectoryW(szTemp
, pSlash
+ 1 == pEnd
? sec
: NULL
);
758 *pSlash
++ = '\\'; /* put the separator back */
762 if (ret
&& hWnd
&& (ERROR_CANCELLED
!= ret
))
764 /* We failed and should show a dialog box */
765 FIXME("Show system error message, creating path %s, failed with error %d\n", debugstr_w(path
), ret
);
766 ret
= ERROR_CANCELLED
; /* Error has been already presented to user (not really yet!) */
772 /*************************************************************************
773 * SHFindAttrW [internal]
775 * Get the Attributes for a file or directory. The difference to GetAttributes()
776 * is that this function will also work for paths containing wildcard characters
780 * path [I] path of directory or file to check
781 * fileOnly [I] TRUE if only files should be found
784 * INVALID_FILE_ATTRIBUTES if the path does not exist, the actual attributes of
785 * the first file or directory found otherwise
787 static DWORD
SHFindAttrW(LPCWSTR pName
, BOOL fileOnly
)
789 WIN32_FIND_DATAW wfd
;
790 BOOL b_FileMask
= fileOnly
&& (NULL
!= StrPBrkW(pName
, wWildcardChars
));
791 DWORD dwAttr
= INVALID_FILE_ATTRIBUTES
;
792 HANDLE hFind
= FindFirstFileW(pName
, &wfd
);
794 TRACE("%s %d\n", debugstr_w(pName
), fileOnly
);
795 if (INVALID_HANDLE_VALUE
!= hFind
)
799 if (b_FileMask
&& IsAttribDir(wfd
.dwFileAttributes
))
801 dwAttr
= wfd
.dwFileAttributes
;
804 while (FindNextFileW(hFind
, &wfd
));
810 /*************************************************************************
812 * SHNameTranslate HelperFunction for SHFileOperationA
814 * Translates a list of 0 terminated ASCII strings into Unicode. If *wString
815 * is NULL, only the necessary size of the string is determined and returned,
816 * otherwise the ASCII strings are copied into it and the buffer is increased
817 * to point to the location after the final 0 termination char.
819 static DWORD
SHNameTranslate(LPWSTR
* wString
, LPCWSTR
* pWToFrom
, BOOL more
)
821 DWORD size
= 0, aSize
= 0;
822 LPCSTR aString
= (LPCSTR
)*pWToFrom
;
828 size
= lstrlenA(aString
) + 1;
831 } while ((size
!= 1) && more
);
832 /* The two sizes might be different in the case of multibyte chars */
833 size
= MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)*pWToFrom
, aSize
, *wString
, 0);
834 if (*wString
) /* only in the second loop */
836 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)*pWToFrom
, aSize
, *wString
, size
);
837 *pWToFrom
= *wString
;
843 /*************************************************************************
844 * SHFileOperationA [SHELL32.@]
846 * Function to copy, move, delete and create one or more files with optional
850 * lpFileOp [I/O] pointer to a structure containing all the necessary information
853 * Success: ERROR_SUCCESS.
854 * Failure: ERROR_CANCELLED.
859 int WINAPI
SHFileOperationA(LPSHFILEOPSTRUCTA lpFileOp
)
861 SHFILEOPSTRUCTW nFileOp
= *((LPSHFILEOPSTRUCTW
)lpFileOp
);
864 LPWSTR ForFree
= NULL
, /* we change wString in SHNameTranslate and can't use it for freeing */
865 wString
= NULL
; /* we change this in SHNameTranslate */
868 if (FO_DELETE
== (nFileOp
.wFunc
& FO_MASK
))
869 nFileOp
.pTo
= NULL
; /* we need a NULL or a valid pointer for translation */
870 if (!(nFileOp
.fFlags
& FOF_SIMPLEPROGRESS
))
871 nFileOp
.lpszProgressTitle
= NULL
; /* we need a NULL or a valid pointer for translation */
872 while (1) /* every loop calculate size, second translate also, if we have storage for this */
874 size
= SHNameTranslate(&wString
, &nFileOp
.lpszProgressTitle
, FALSE
); /* no loop */
875 size
+= SHNameTranslate(&wString
, &nFileOp
.pFrom
, TRUE
); /* internal loop */
876 size
+= SHNameTranslate(&wString
, &nFileOp
.pTo
, TRUE
); /* internal loop */
880 retCode
= SHFileOperationW(&nFileOp
);
881 HeapFree(GetProcessHeap(), 0, ForFree
); /* we cannot use wString, it was changed */
886 wString
= ForFree
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(WCHAR
));
887 if (ForFree
) continue;
888 retCode
= ERROR_OUTOFMEMORY
;
889 nFileOp
.fAnyOperationsAborted
= TRUE
;
890 SetLastError(retCode
);
895 lpFileOp
->hNameMappings
= nFileOp
.hNameMappings
;
896 lpFileOp
->fAnyOperationsAborted
= nFileOp
.fAnyOperationsAborted
;
900 #define ERROR_SHELL_INTERNAL_FILE_NOT_FOUND 1026
918 BOOL bAnyFromWildcard
;
919 BOOL bAnyDirectories
;
924 static inline void grow_list(FILE_LIST
*list
)
926 FILE_ENTRY
*new = HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, list
->feFiles
,
927 list
->num_alloc
* 2 * sizeof(*new) );
929 list
->num_alloc
*= 2;
932 /* adds a file to the FILE_ENTRY struct
934 static void add_file_to_entry(FILE_ENTRY
*feFile
, LPCWSTR szFile
)
936 DWORD dwLen
= lstrlenW(szFile
) + 1;
939 feFile
->szFullPath
= HeapAlloc(GetProcessHeap(), 0, dwLen
* sizeof(WCHAR
));
940 lstrcpyW(feFile
->szFullPath
, szFile
);
942 ptr
= StrRChrW(szFile
, NULL
, '\\');
945 dwLen
= ptr
- szFile
+ 1;
946 feFile
->szDirectory
= HeapAlloc(GetProcessHeap(), 0, dwLen
* sizeof(WCHAR
));
947 lstrcpynW(feFile
->szDirectory
, szFile
, dwLen
);
949 dwLen
= lstrlenW(feFile
->szFullPath
) - dwLen
+ 1;
950 feFile
->szFilename
= HeapAlloc(GetProcessHeap(), 0, dwLen
* sizeof(WCHAR
));
951 lstrcpyW(feFile
->szFilename
, ptr
+ 1); /* skip over backslash */
953 feFile
->bFromWildcard
= FALSE
;
956 static LPWSTR
wildcard_to_file(LPCWSTR szWildCard
, LPCWSTR szFileName
)
960 DWORD dwDirLen
, dwFullLen
;
962 ptr
= StrRChrW(szWildCard
, NULL
, '\\');
963 dwDirLen
= ptr
- szWildCard
+ 1;
965 dwFullLen
= dwDirLen
+ lstrlenW(szFileName
) + 1;
966 szFullPath
= HeapAlloc(GetProcessHeap(), 0, dwFullLen
* sizeof(WCHAR
));
968 lstrcpynW(szFullPath
, szWildCard
, dwDirLen
+ 1);
969 lstrcatW(szFullPath
, szFileName
);
974 static void parse_wildcard_files(FILE_LIST
*flList
, LPCWSTR szFile
, LPDWORD pdwListIndex
)
976 WIN32_FIND_DATAW wfd
;
977 HANDLE hFile
= FindFirstFileW(szFile
, &wfd
);
982 if (hFile
== INVALID_HANDLE_VALUE
) return;
984 for (res
= TRUE
; res
; res
= FindNextFileW(hFile
, &wfd
))
986 if (IsDotDir(wfd
.cFileName
)) continue;
987 if (*pdwListIndex
>= flList
->num_alloc
) grow_list( flList
);
988 szFullPath
= wildcard_to_file(szFile
, wfd
.cFileName
);
989 file
= &flList
->feFiles
[(*pdwListIndex
)++];
990 add_file_to_entry(file
, szFullPath
);
991 file
->bFromWildcard
= TRUE
;
992 file
->attributes
= wfd
.dwFileAttributes
;
993 if (IsAttribDir(file
->attributes
)) flList
->bAnyDirectories
= TRUE
;
994 HeapFree(GetProcessHeap(), 0, szFullPath
);
1000 /* takes the null-separated file list and fills out the FILE_LIST */
1001 static HRESULT
parse_file_list(FILE_LIST
*flList
, LPCWSTR szFiles
)
1003 LPCWSTR ptr
= szFiles
;
1004 WCHAR szCurFile
[MAX_PATH
];
1005 DWORD i
= 0, dwDirLen
;
1008 return ERROR_INVALID_PARAMETER
;
1010 flList
->bAnyFromWildcard
= FALSE
;
1011 flList
->bAnyDirectories
= FALSE
;
1012 flList
->bAnyDontExist
= FALSE
;
1013 flList
->num_alloc
= 32;
1014 flList
->dwNumFiles
= 0;
1018 return ERROR_ACCESS_DENIED
;
1020 flList
->feFiles
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
1021 flList
->num_alloc
* sizeof(FILE_ENTRY
));
1025 if (i
>= flList
->num_alloc
) grow_list( flList
);
1027 /* change relative to absolute path */
1028 if (PathIsRelativeW(ptr
))
1030 dwDirLen
= GetCurrentDirectoryW(MAX_PATH
, szCurFile
) + 1;
1031 PathCombineW(szCurFile
, szCurFile
, ptr
);
1032 flList
->feFiles
[i
].bFromRelative
= TRUE
;
1036 lstrcpyW(szCurFile
, ptr
);
1037 flList
->feFiles
[i
].bFromRelative
= FALSE
;
1040 /* parse wildcard files if they are in the filename */
1041 if (StrPBrkW(szCurFile
, wWildcardChars
))
1043 parse_wildcard_files(flList
, szCurFile
, &i
);
1044 flList
->bAnyFromWildcard
= TRUE
;
1049 FILE_ENTRY
*file
= &flList
->feFiles
[i
];
1050 add_file_to_entry(file
, szCurFile
);
1051 file
->attributes
= GetFileAttributesW( file
->szFullPath
);
1052 file
->bExists
= (file
->attributes
!= INVALID_FILE_ATTRIBUTES
);
1053 if (!file
->bExists
) flList
->bAnyDontExist
= TRUE
;
1054 if (IsAttribDir(file
->attributes
)) flList
->bAnyDirectories
= TRUE
;
1057 /* advance to the next string */
1058 ptr
+= lstrlenW(ptr
) + 1;
1061 flList
->dwNumFiles
= i
;
1066 /* free the FILE_LIST */
1067 static void destroy_file_list(FILE_LIST
*flList
)
1071 if (!flList
|| !flList
->feFiles
)
1074 for (i
= 0; i
< flList
->dwNumFiles
; i
++)
1076 HeapFree(GetProcessHeap(), 0, flList
->feFiles
[i
].szDirectory
);
1077 HeapFree(GetProcessHeap(), 0, flList
->feFiles
[i
].szFilename
);
1078 HeapFree(GetProcessHeap(), 0, flList
->feFiles
[i
].szFullPath
);
1081 HeapFree(GetProcessHeap(), 0, flList
->feFiles
);
1084 static void copy_dir_to_dir(FILE_OPERATION
*op
, const FILE_ENTRY
*feFrom
, LPCWSTR szDestPath
)
1086 WCHAR szFrom
[MAX_PATH
], szTo
[MAX_PATH
];
1087 SHFILEOPSTRUCTW fileOp
;
1089 static const WCHAR wildCardFiles
[] = {'*','.','*',0};
1091 if (IsDotDir(feFrom
->szFilename
))
1094 if (PathFileExistsW(szDestPath
))
1095 PathCombineW(szTo
, szDestPath
, feFrom
->szFilename
);
1097 lstrcpyW(szTo
, szDestPath
);
1099 if (!(op
->req
->fFlags
& FOF_NOCONFIRMATION
) && PathFileExistsW(szTo
)) {
1100 if (!SHELL_ConfirmDialogW(op
->req
->hwnd
, ASK_OVERWRITE_FOLDER
, feFrom
->szFilename
, op
))
1102 /* Vista returns an ERROR_CANCELLED even if user pressed "No" */
1103 if (!op
->bManyItems
)
1104 op
->bCancelled
= TRUE
;
1109 szTo
[lstrlenW(szTo
) + 1] = '\0';
1110 SHNotifyCreateDirectoryW(szTo
, NULL
);
1112 PathCombineW(szFrom
, feFrom
->szFullPath
, wildCardFiles
);
1113 szFrom
[lstrlenW(szFrom
) + 1] = '\0';
1115 memcpy(&fileOp
, op
->req
, sizeof(fileOp
));
1116 fileOp
.pFrom
= szFrom
;
1118 fileOp
.fFlags
&= ~FOF_MULTIDESTFILES
; /* we know we're copying to one dir */
1120 /* Don't ask the user about overwriting files when he accepted to overwrite the
1121 folder. FIXME: this is not exactly what Windows does - e.g. there would be
1122 an additional confirmation for a nested folder */
1123 fileOp
.fFlags
|= FOF_NOCONFIRMATION
;
1125 SHFileOperationW(&fileOp
);
1128 static BOOL
copy_file_to_file(FILE_OPERATION
*op
, const WCHAR
*szFrom
, const WCHAR
*szTo
)
1130 if (!(op
->req
->fFlags
& FOF_NOCONFIRMATION
) && PathFileExistsW(szTo
))
1132 if (!SHELL_ConfirmDialogW(op
->req
->hwnd
, ASK_OVERWRITE_FILE
, PathFindFileNameW(szTo
), op
))
1136 return SHNotifyCopyFileW(szFrom
, szTo
, FALSE
) == 0;
1139 /* copy a file or directory to another directory */
1140 static void copy_to_dir(FILE_OPERATION
*op
, const FILE_ENTRY
*feFrom
, const FILE_ENTRY
*feTo
)
1142 if (!PathFileExistsW(feTo
->szFullPath
))
1143 SHNotifyCreateDirectoryW(feTo
->szFullPath
, NULL
);
1145 if (IsAttribFile(feFrom
->attributes
))
1147 WCHAR szDestPath
[MAX_PATH
];
1149 PathCombineW(szDestPath
, feTo
->szFullPath
, feFrom
->szFilename
);
1150 copy_file_to_file(op
, feFrom
->szFullPath
, szDestPath
);
1152 else if (!(op
->req
->fFlags
& FOF_FILESONLY
&& feFrom
->bFromWildcard
))
1153 copy_dir_to_dir(op
, feFrom
, feTo
->szFullPath
);
1156 static void create_dest_dirs(LPCWSTR szDestDir
)
1158 WCHAR dir
[MAX_PATH
];
1159 LPCWSTR ptr
= StrChrW(szDestDir
, '\\');
1161 /* make sure all directories up to last one are created */
1162 while (ptr
&& (ptr
= StrChrW(ptr
+ 1, '\\')))
1164 lstrcpynW(dir
, szDestDir
, ptr
- szDestDir
+ 1);
1166 if (!PathFileExistsW(dir
))
1167 SHNotifyCreateDirectoryW(dir
, NULL
);
1170 /* create last directory */
1171 if (!PathFileExistsW(szDestDir
))
1172 SHNotifyCreateDirectoryW(szDestDir
, NULL
);
1175 /* the FO_COPY operation */
1176 static HRESULT
copy_files(FILE_OPERATION
*op
, const FILE_LIST
*flFrom
, const FILE_LIST
*flTo
)
1179 const FILE_ENTRY
*entryToCopy
;
1180 const FILE_ENTRY
*fileDest
= &flTo
->feFiles
[0];
1181 BOOL bCancelIfAnyDirectories
= FALSE
;
1183 if (flFrom
->bAnyDontExist
)
1184 return ERROR_SHELL_INTERNAL_FILE_NOT_FOUND
;
1186 if (op
->req
->fFlags
& FOF_MULTIDESTFILES
&& flFrom
->bAnyFromWildcard
)
1187 return ERROR_CANCELLED
;
1189 if (!(op
->req
->fFlags
& FOF_MULTIDESTFILES
) && flTo
->dwNumFiles
!= 1)
1190 return ERROR_CANCELLED
;
1192 if (op
->req
->fFlags
& FOF_MULTIDESTFILES
&& flFrom
->dwNumFiles
!= 1 &&
1193 flFrom
->dwNumFiles
!= flTo
->dwNumFiles
)
1195 return ERROR_CANCELLED
;
1198 if (flFrom
->dwNumFiles
> 1 && flTo
->dwNumFiles
== 1 &&
1199 !PathFileExistsW(flTo
->feFiles
[0].szFullPath
) &&
1200 IsAttribFile(fileDest
->attributes
))
1202 bCancelIfAnyDirectories
= TRUE
;
1205 if (flFrom
->dwNumFiles
> 1 && flTo
->dwNumFiles
== 1 && fileDest
->bFromRelative
&&
1206 !PathFileExistsW(fileDest
->szFullPath
))
1208 op
->req
->fAnyOperationsAborted
= TRUE
;
1209 return ERROR_CANCELLED
;
1212 if (!(op
->req
->fFlags
& FOF_MULTIDESTFILES
) && flFrom
->dwNumFiles
!= 1 &&
1213 PathFileExistsW(fileDest
->szFullPath
) &&
1214 IsAttribFile(fileDest
->attributes
))
1216 return ERROR_CANCELLED
;
1219 for (i
= 0; i
< flFrom
->dwNumFiles
; i
++)
1221 entryToCopy
= &flFrom
->feFiles
[i
];
1223 if (op
->req
->fFlags
& FOF_MULTIDESTFILES
)
1224 fileDest
= &flTo
->feFiles
[i
];
1226 if (IsAttribDir(entryToCopy
->attributes
) &&
1227 !lstrcmpiW(entryToCopy
->szFullPath
, fileDest
->szDirectory
))
1229 return ERROR_SUCCESS
;
1232 if (IsAttribDir(entryToCopy
->attributes
) && bCancelIfAnyDirectories
)
1233 return ERROR_CANCELLED
;
1235 create_dest_dirs(fileDest
->szDirectory
);
1237 if (!lstrcmpiW(entryToCopy
->szFullPath
, fileDest
->szFullPath
))
1239 if (IsAttribFile(entryToCopy
->attributes
))
1240 return ERROR_NO_MORE_SEARCH_HANDLES
;
1242 return ERROR_SUCCESS
;
1245 if ((flFrom
->dwNumFiles
> 1 && flTo
->dwNumFiles
== 1) ||
1246 (flFrom
->dwNumFiles
== 1 && IsAttribDir(fileDest
->attributes
)))
1248 copy_to_dir(op
, entryToCopy
, fileDest
);
1250 else if (IsAttribDir(entryToCopy
->attributes
))
1252 copy_dir_to_dir(op
, entryToCopy
, fileDest
->szFullPath
);
1256 if (!copy_file_to_file(op
, entryToCopy
->szFullPath
, fileDest
->szFullPath
))
1258 op
->req
->fAnyOperationsAborted
= TRUE
;
1259 return ERROR_CANCELLED
;
1263 /* Vista return code. XP would return e.g. ERROR_FILE_NOT_FOUND, ERROR_ALREADY_EXISTS */
1265 return ERROR_CANCELLED
;
1268 /* Vista return code. On XP if the used pressed "No" for the last item,
1269 * ERROR_ARENA_TRASHED would be returned */
1270 return ERROR_SUCCESS
;
1273 static BOOL
confirm_delete_list(HWND hWnd
, DWORD fFlags
, BOOL fTrash
, const FILE_LIST
*flFrom
)
1275 if (flFrom
->dwNumFiles
> 1)
1278 const WCHAR format
[] = {'%','d',0};
1280 wnsprintfW(tmp
, sizeof(tmp
)/sizeof(tmp
[0]), format
, flFrom
->dwNumFiles
);
1281 return SHELL_ConfirmDialogW(hWnd
, (fTrash
?ASK_TRASH_MULTIPLE_ITEM
:ASK_DELETE_MULTIPLE_ITEM
), tmp
, NULL
);
1285 const FILE_ENTRY
*fileEntry
= &flFrom
->feFiles
[0];
1287 if (IsAttribFile(fileEntry
->attributes
))
1288 return SHELL_ConfirmDialogW(hWnd
, (fTrash
?ASK_TRASH_FILE
:ASK_DELETE_FILE
), fileEntry
->szFullPath
, NULL
);
1289 else if (!(fFlags
& FOF_FILESONLY
&& fileEntry
->bFromWildcard
))
1290 return SHELL_ConfirmDialogW(hWnd
, (fTrash
?ASK_TRASH_FOLDER
:ASK_DELETE_FOLDER
), fileEntry
->szFullPath
, NULL
);
1295 /* the FO_DELETE operation */
1296 static HRESULT
delete_files(LPSHFILEOPSTRUCTW lpFileOp
, const FILE_LIST
*flFrom
)
1298 const FILE_ENTRY
*fileEntry
;
1303 if (!flFrom
->dwNumFiles
)
1304 return ERROR_SUCCESS
;
1306 /* Windows also checks only the first item */
1307 bTrash
= (lpFileOp
->fFlags
& FOF_ALLOWUNDO
)
1308 && TRASH_CanTrashFile(flFrom
->feFiles
[0].szFullPath
);
1310 if (!(lpFileOp
->fFlags
& FOF_NOCONFIRMATION
) || (!bTrash
&& lpFileOp
->fFlags
& FOF_WANTNUKEWARNING
))
1311 if (!confirm_delete_list(lpFileOp
->hwnd
, lpFileOp
->fFlags
, bTrash
, flFrom
))
1313 lpFileOp
->fAnyOperationsAborted
= TRUE
;
1317 for (i
= 0; i
< flFrom
->dwNumFiles
; i
++)
1320 fileEntry
= &flFrom
->feFiles
[i
];
1322 if (!IsAttribFile(fileEntry
->attributes
) &&
1323 (lpFileOp
->fFlags
& FOF_FILESONLY
&& fileEntry
->bFromWildcard
))
1329 if (TRASH_TrashFile(fileEntry
->szFullPath
))
1332 /* Note: Windows silently deletes the file in such a situation, we show a dialog */
1333 if (!(lpFileOp
->fFlags
& FOF_NOCONFIRMATION
) || (lpFileOp
->fFlags
& FOF_WANTNUKEWARNING
))
1334 bDelete
= SHELL_ConfirmDialogW(lpFileOp
->hwnd
, ASK_CANT_TRASH_ITEM
, fileEntry
->szFullPath
, NULL
);
1340 lpFileOp
->fAnyOperationsAborted
= TRUE
;
1345 /* delete the file or directory */
1346 if (IsAttribFile(fileEntry
->attributes
))
1347 bPathExists
= DeleteFileW(fileEntry
->szFullPath
);
1349 bPathExists
= SHELL_DeleteDirectoryW(lpFileOp
->hwnd
, fileEntry
->szFullPath
, FALSE
);
1352 return ERROR_PATH_NOT_FOUND
;
1355 return ERROR_SUCCESS
;
1358 static void move_dir_to_dir(LPSHFILEOPSTRUCTW lpFileOp
, const FILE_ENTRY
*feFrom
, LPCWSTR szDestPath
)
1360 WCHAR szFrom
[MAX_PATH
], szTo
[MAX_PATH
];
1361 SHFILEOPSTRUCTW fileOp
;
1363 static const WCHAR wildCardFiles
[] = {'*','.','*',0};
1365 if (IsDotDir(feFrom
->szFilename
))
1368 SHNotifyCreateDirectoryW(szDestPath
, NULL
);
1370 PathCombineW(szFrom
, feFrom
->szFullPath
, wildCardFiles
);
1371 szFrom
[lstrlenW(szFrom
) + 1] = '\0';
1373 lstrcpyW(szTo
, szDestPath
);
1374 szTo
[lstrlenW(szDestPath
) + 1] = '\0';
1376 memcpy(&fileOp
, lpFileOp
, sizeof(fileOp
));
1377 fileOp
.pFrom
= szFrom
;
1380 SHFileOperationW(&fileOp
);
1383 /* moves a file or directory to another directory */
1384 static void move_to_dir(LPSHFILEOPSTRUCTW lpFileOp
, const FILE_ENTRY
*feFrom
, const FILE_ENTRY
*feTo
)
1386 WCHAR szDestPath
[MAX_PATH
];
1388 PathCombineW(szDestPath
, feTo
->szFullPath
, feFrom
->szFilename
);
1390 if (IsAttribFile(feFrom
->attributes
))
1391 SHNotifyMoveFileW(feFrom
->szFullPath
, szDestPath
);
1392 else if (!(lpFileOp
->fFlags
& FOF_FILESONLY
&& feFrom
->bFromWildcard
))
1393 move_dir_to_dir(lpFileOp
, feFrom
, szDestPath
);
1396 /* the FO_MOVE operation */
1397 static HRESULT
move_files(LPSHFILEOPSTRUCTW lpFileOp
, const FILE_LIST
*flFrom
, const FILE_LIST
*flTo
)
1400 const FILE_ENTRY
*entryToMove
;
1401 const FILE_ENTRY
*fileDest
;
1403 if (!flFrom
->dwNumFiles
|| !flTo
->dwNumFiles
)
1404 return ERROR_CANCELLED
;
1406 if (!(lpFileOp
->fFlags
& FOF_MULTIDESTFILES
) &&
1407 flTo
->dwNumFiles
> 1 && flFrom
->dwNumFiles
> 1)
1409 return ERROR_CANCELLED
;
1412 if (!(lpFileOp
->fFlags
& FOF_MULTIDESTFILES
) &&
1413 !flFrom
->bAnyDirectories
&&
1414 flFrom
->dwNumFiles
> flTo
->dwNumFiles
)
1416 return ERROR_CANCELLED
;
1419 if (!PathFileExistsW(flTo
->feFiles
[0].szDirectory
))
1420 return ERROR_CANCELLED
;
1422 if ((lpFileOp
->fFlags
& FOF_MULTIDESTFILES
) &&
1423 flFrom
->dwNumFiles
!= flTo
->dwNumFiles
)
1425 return ERROR_CANCELLED
;
1428 fileDest
= &flTo
->feFiles
[0];
1429 for (i
= 0; i
< flFrom
->dwNumFiles
; i
++)
1431 entryToMove
= &flFrom
->feFiles
[i
];
1433 if (lpFileOp
->fFlags
& FOF_MULTIDESTFILES
)
1434 fileDest
= &flTo
->feFiles
[i
];
1436 if (!PathFileExistsW(fileDest
->szDirectory
))
1437 return ERROR_CANCELLED
;
1439 if (fileDest
->bExists
&& IsAttribDir(fileDest
->attributes
))
1440 move_to_dir(lpFileOp
, entryToMove
, fileDest
);
1442 SHNotifyMoveFileW(entryToMove
->szFullPath
, fileDest
->szFullPath
);
1445 return ERROR_SUCCESS
;
1448 /* the FO_RENAME files */
1449 static HRESULT
rename_files(LPSHFILEOPSTRUCTW lpFileOp
, const FILE_LIST
*flFrom
, const FILE_LIST
*flTo
)
1451 const FILE_ENTRY
*feFrom
;
1452 const FILE_ENTRY
*feTo
;
1454 if (flFrom
->dwNumFiles
!= 1)
1455 return ERROR_GEN_FAILURE
;
1457 if (flTo
->dwNumFiles
!= 1)
1458 return ERROR_CANCELLED
;
1460 feFrom
= &flFrom
->feFiles
[0];
1461 feTo
= &flTo
->feFiles
[0];
1463 /* fail if destination doesn't exist */
1464 if (!feFrom
->bExists
)
1465 return ERROR_SHELL_INTERNAL_FILE_NOT_FOUND
;
1467 /* fail if destination already exists */
1469 return ERROR_ALREADY_EXISTS
;
1471 return SHNotifyMoveFileW(feFrom
->szFullPath
, feTo
->szFullPath
);
1474 /* alert the user if an unsupported flag is used */
1475 static void check_flags(FILEOP_FLAGS fFlags
)
1477 WORD wUnsupportedFlags
= FOF_NO_CONNECTED_ELEMENTS
|
1478 FOF_NOCOPYSECURITYATTRIBS
| FOF_NORECURSEREPARSE
|
1479 FOF_RENAMEONCOLLISION
| FOF_WANTMAPPINGHANDLE
;
1481 if (fFlags
& wUnsupportedFlags
)
1482 FIXME("Unsupported flags: %04x\n", fFlags
);
1485 /*************************************************************************
1486 * SHFileOperationW [SHELL32.@]
1488 * See SHFileOperationA
1490 int WINAPI
SHFileOperationW(LPSHFILEOPSTRUCTW lpFileOp
)
1493 FILE_LIST flFrom
, flTo
;
1497 return ERROR_INVALID_PARAMETER
;
1499 check_flags(lpFileOp
->fFlags
);
1501 ZeroMemory(&flFrom
, sizeof(FILE_LIST
));
1502 ZeroMemory(&flTo
, sizeof(FILE_LIST
));
1504 if ((ret
= parse_file_list(&flFrom
, lpFileOp
->pFrom
)))
1507 if (lpFileOp
->wFunc
!= FO_DELETE
)
1508 parse_file_list(&flTo
, lpFileOp
->pTo
);
1510 ZeroMemory(&op
, sizeof(op
));
1512 op
.bManyItems
= (flFrom
.dwNumFiles
> 1);
1514 switch (lpFileOp
->wFunc
)
1517 ret
= copy_files(&op
, &flFrom
, &flTo
);
1520 ret
= delete_files(lpFileOp
, &flFrom
);
1523 ret
= move_files(lpFileOp
, &flFrom
, &flTo
);
1526 ret
= rename_files(lpFileOp
, &flFrom
, &flTo
);
1529 ret
= ERROR_INVALID_PARAMETER
;
1533 destroy_file_list(&flFrom
);
1535 if (lpFileOp
->wFunc
!= FO_DELETE
)
1536 destroy_file_list(&flTo
);
1538 if (ret
== ERROR_CANCELLED
)
1539 lpFileOp
->fAnyOperationsAborted
= TRUE
;
1544 #define SHDSA_GetItemCount(hdsa) (*(int*)(hdsa))
1546 /*************************************************************************
1547 * SHFreeNameMappings [shell32.246]
1549 * Free the mapping handle returned by SHFileoperation if FOF_WANTSMAPPINGHANDLE
1553 * hNameMapping [I] handle to the name mappings used during renaming of files
1558 void WINAPI
SHFreeNameMappings(HANDLE hNameMapping
)
1562 int i
= SHDSA_GetItemCount((HDSA
)hNameMapping
) - 1;
1566 LPSHNAMEMAPPINGW lp
= DSA_GetItemPtr((HDSA
)hNameMapping
, i
);
1568 SHFree(lp
->pszOldPath
);
1569 SHFree(lp
->pszNewPath
);
1571 DSA_Destroy((HDSA
)hNameMapping
);
1575 /*************************************************************************
1576 * SheGetDirA [SHELL32.@]
1578 * drive = 0: returns the current directory path
1579 * drive > 0: returns the current directory path of the specified drive
1580 * drive=1 -> A: drive=2 -> B: ...
1581 * returns 0 if successful
1583 DWORD WINAPI
SheGetDirA(DWORD drive
, LPSTR buffer
)
1585 WCHAR org_path
[MAX_PATH
];
1589 /* change current directory to the specified drive */
1591 strcpy(drv_path
, "A:");
1592 drv_path
[0] += (char)drive
-1;
1594 GetCurrentDirectoryW(MAX_PATH
, org_path
);
1596 SetCurrentDirectoryA(drv_path
);
1599 /* query current directory path of the specified drive */
1600 ret
= GetCurrentDirectoryA(MAX_PATH
, buffer
);
1602 /* back to the original drive */
1604 SetCurrentDirectoryW(org_path
);
1607 return GetLastError();
1612 /*************************************************************************
1613 * SheGetDirW [SHELL32.@]
1615 * drive = 0: returns the current directory path
1616 * drive > 0: returns the current directory path of the specified drive
1617 * drive=1 -> A: drive=2 -> B: ...
1618 * returns 0 if successful
1620 DWORD WINAPI
SheGetDirW(DWORD drive
, LPWSTR buffer
)
1622 WCHAR org_path
[MAX_PATH
];
1626 /* change current directory to the specified drive */
1628 strcpy(drv_path
, "A:");
1629 drv_path
[0] += (char)drive
-1;
1631 GetCurrentDirectoryW(MAX_PATH
, org_path
);
1633 SetCurrentDirectoryA(drv_path
);
1636 /* query current directory path of the specified drive */
1637 ret
= GetCurrentDirectoryW(MAX_PATH
, buffer
);
1639 /* back to the original drive */
1641 SetCurrentDirectoryW(org_path
);
1644 return GetLastError();
1649 /*************************************************************************
1650 * SheChangeDirA [SHELL32.@]
1652 * changes the current directory to the specified path
1653 * and returns 0 if successful
1655 DWORD WINAPI
SheChangeDirA(LPSTR path
)
1657 if (SetCurrentDirectoryA(path
))
1660 return GetLastError();
1663 /*************************************************************************
1664 * SheChangeDirW [SHELL32.@]
1666 * changes the current directory to the specified path
1667 * and returns 0 if successful
1669 DWORD WINAPI
SheChangeDirW(LPWSTR path
)
1671 if (SetCurrentDirectoryW(path
))
1674 return GetLastError();
1677 /*************************************************************************
1678 * IsNetDrive [SHELL32.66]
1680 BOOL WINAPI
IsNetDrive(DWORD drive
)
1683 strcpy(root
, "A:\\");
1684 root
[0] += (char)drive
;
1685 return (GetDriveTypeA(root
) == DRIVE_REMOTE
);
1689 /*************************************************************************
1690 * RealDriveType [SHELL32.524]
1692 INT WINAPI
RealDriveType(INT drive
, BOOL bQueryNet
)
1694 char root
[] = "A:\\";
1695 root
[0] += (char)drive
;
1696 return GetDriveTypeA(root
);
1699 /***********************************************************************
1700 * SHPathPrepareForWriteA (SHELL32.@)
1702 HRESULT WINAPI
SHPathPrepareForWriteA(HWND hwnd
, IUnknown
*modless
, LPCSTR path
, DWORD flags
)
1704 WCHAR wpath
[MAX_PATH
];
1705 MultiByteToWideChar( CP_ACP
, 0, path
, -1, wpath
, MAX_PATH
);
1706 return SHPathPrepareForWriteW(hwnd
, modless
, wpath
, flags
);
1709 /***********************************************************************
1710 * SHPathPrepareForWriteW (SHELL32.@)
1712 HRESULT WINAPI
SHPathPrepareForWriteW(HWND hwnd
, IUnknown
*modless
, LPCWSTR path
, DWORD flags
)
1719 WCHAR
* temppath
=NULL
;
1721 TRACE("%p %p %s 0x%80x\n", hwnd
, modless
, debugstr_w(path
), flags
);
1723 if (flags
& ~(SHPPFW_DIRCREATE
|SHPPFW_ASKDIRCREATE
|SHPPFW_IGNOREFILENAME
))
1724 FIXME("unimplemented flags 0x%08x\n", flags
);
1726 /* cut off filename if necessary */
1727 if (flags
& SHPPFW_IGNOREFILENAME
)
1729 last_slash
= StrRChrW(path
, NULL
, '\\');
1730 if (last_slash
== NULL
)
1733 len
= last_slash
- path
+ 1;
1734 temppath
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
1736 return E_OUTOFMEMORY
;
1737 StrCpyNW(temppath
, path
, len
);
1738 realpath
= temppath
;
1745 /* try to create the directory if asked to */
1746 if (flags
& (SHPPFW_DIRCREATE
|SHPPFW_ASKDIRCREATE
))
1748 if (flags
& SHPPFW_ASKDIRCREATE
)
1749 FIXME("treating SHPPFW_ASKDIRCREATE as SHPPFW_DIRCREATE\n");
1751 SHCreateDirectoryExW(0, realpath
, NULL
);
1754 /* check if we can access the directory */
1755 res
= GetFileAttributesW(realpath
);
1757 HeapFree(GetProcessHeap(), 0, temppath
);
1759 if (res
== INVALID_FILE_ATTRIBUTES
)
1761 err
= GetLastError();
1762 if (err
== ERROR_FILE_NOT_FOUND
)
1763 return HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND
);
1764 return HRESULT_FROM_WIN32(err
);
1766 else if (res
& FILE_ATTRIBUTE_DIRECTORY
)
1769 return HRESULT_FROM_WIN32(ERROR_DIRECTORY
);