mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
make sure temp directory exist
svn path=/trunk/; revision=9229
This commit is contained in:
parent
63bc13d624
commit
42ad6cb85f
2 changed files with 62 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: cmd.c,v 1.10 2004/01/28 20:52:57 gvg Exp $
|
/* $Id: cmd.c,v 1.11 2004/04/26 20:26:15 gdalsnes Exp $
|
||||||
*
|
*
|
||||||
* CMD.C - command-line interface.
|
* CMD.C - command-line interface.
|
||||||
*
|
*
|
||||||
|
@ -165,6 +165,58 @@ WORD wDefColor; /* default color */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* MakeSureDirectoryPathExistsEx
|
||||||
|
*
|
||||||
|
* If a dir is at the end and the path ends with a backslash, FileAtEnd
|
||||||
|
* is ignored. If the path doesn't end with a backslash, FileAtEnd is
|
||||||
|
* used to determine if the last part of the path is a file name or a
|
||||||
|
* directory.
|
||||||
|
*
|
||||||
|
* Path may be absolute or relative to current dir.
|
||||||
|
*
|
||||||
|
* FIXME: maybe put this in a header/library where everyone can use it?????
|
||||||
|
*/
|
||||||
|
BOOL WINAPI MakeSureDirectoryPathExistsEx(LPCSTR DirPath, BOOL FileAtEnd)
|
||||||
|
{
|
||||||
|
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;
|
||||||
|
|
||||||
|
if (*(SlashPos+1) == 0) return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!FileAtEnd)
|
||||||
|
{
|
||||||
|
bRes = CreateDirectoryA(Path, NULL);
|
||||||
|
if (bRes == FALSE && GetLastError() != ERROR_ALREADY_EXISTS)
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* is character a delimeter when used on first word?
|
* is character a delimeter when used on first word?
|
||||||
*
|
*
|
||||||
|
@ -512,6 +564,7 @@ VOID ParseCommandLine (LPTSTR cmd)
|
||||||
#ifdef FEATURE_REDIRECTION
|
#ifdef FEATURE_REDIRECTION
|
||||||
/* find the temp path to store temporary files */
|
/* find the temp path to store temporary files */
|
||||||
GetTempPath (MAX_PATH, szTempPath);
|
GetTempPath (MAX_PATH, szTempPath);
|
||||||
|
MakeSureDirectoryPathExistsEx(szTempPath, FALSE);
|
||||||
if (szTempPath[_tcslen (szTempPath) - 1] != _T('\\'))
|
if (szTempPath[_tcslen (szTempPath) - 1] != _T('\\'))
|
||||||
_tcscat (szTempPath, _T("\\"));
|
_tcscat (szTempPath, _T("\\"));
|
||||||
|
|
||||||
|
@ -575,6 +628,12 @@ VOID ParseCommandLine (LPTSTR cmd)
|
||||||
/* Set current stdout to temporary file */
|
/* Set current stdout to temporary file */
|
||||||
hFile[1] = CreateFile (szFileName[1], GENERIC_WRITE, 0, &sa,
|
hFile[1] = CreateFile (szFileName[1], GENERIC_WRITE, 0, &sa,
|
||||||
TRUNCATE_EXISTING, FILE_ATTRIBUTE_TEMPORARY, NULL);
|
TRUNCATE_EXISTING, FILE_ATTRIBUTE_TEMPORARY, NULL);
|
||||||
|
|
||||||
|
if (hFile[1] == INVALID_HANDLE_VALUE){
|
||||||
|
ConErrPrintf (_T("Error creating temporary file for pipe data\n"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
SetStdHandle (STD_OUTPUT_HANDLE, hFile[1]);
|
SetStdHandle (STD_OUTPUT_HANDLE, hFile[1]);
|
||||||
|
|
||||||
DoCommand (s);
|
DoCommand (s);
|
||||||
|
|
|
@ -39,7 +39,7 @@ free.c Implements free command
|
||||||
goto.c Implements goto command
|
goto.c Implements goto command
|
||||||
history.c Command-line history handling
|
history.c Command-line history handling
|
||||||
if.c Implements if command
|
if.c Implements if command
|
||||||
internal.c Internal commands (DIR, RD, etc)
|
internal.c Internal commands (DIR, RD, CD, etc)
|
||||||
label.c Implements label command
|
label.c Implements label command
|
||||||
locale.c Locale handling code
|
locale.c Locale handling code
|
||||||
memory.c Implements memory command
|
memory.c Implements memory command
|
||||||
|
|
Loading…
Reference in a new issue