mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
fix broken MakeSureDirectoryPathExists. It depended on Wine's
CreateDirectory, which seems to be more relaxed that the ros/Windows version. svn path=/trunk/; revision=9228
This commit is contained in:
parent
bdce3452a0
commit
63bc13d624
1 changed files with 29 additions and 8 deletions
|
@ -81,19 +81,40 @@ LPAPI_VERSION WINAPI ImagehlpApiVersionEx(LPAPI_VERSION AppVersion)
|
|||
|
||||
/***********************************************************************
|
||||
* MakeSureDirectoryPathExists (IMAGEHLP.@)
|
||||
*
|
||||
* Path may contain a file at the end. If a dir is at the end, the path
|
||||
* must end with a backslash.
|
||||
*
|
||||
* Path may be absolute or relative (to current dir).
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI MakeSureDirectoryPathExists(LPCSTR DirPath)
|
||||
{
|
||||
if (CreateDirectoryA(DirPath,NULL))
|
||||
return TRUE;
|
||||
if (GetLastError() == ERROR_ALREADY_EXISTS)
|
||||
{
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
return TRUE;
|
||||
}
|
||||
return FALSE;
|
||||
char Path[MAX_PATH];
|
||||
char *SlashPos = Path;
|
||||
char Slash;
|
||||
BOOL bRes;
|
||||
|
||||
strcpy(Path, DirPath);
|
||||
|
||||
while((SlashPos=strpbrk(SlashPos+1,"\\/")))
|
||||
{
|
||||
Slash = *SlashPos;
|
||||
*SlashPos = 0;
|
||||
|
||||
bRes = CreateDirectoryA(Path, NULL);
|
||||
if (bRes == FALSE && GetLastError() != ERROR_ALREADY_EXISTS)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
*SlashPos = Slash;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* MarkImageAsRunFromSwap (IMAGEHLP.@)
|
||||
* FIXME
|
||||
|
|
Loading…
Reference in a new issue