mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
2003-08-30 Casper S. Hornstrup <chorns@users.sourceforge.net>
* tools/rmkdir.c: Fix for absolute paths. svn path=/trunk/; revision=5930
This commit is contained in:
parent
b6a3594f0e
commit
2566f13f3e
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2003-08-30 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
|
* tools/rmkdir.c: Fix for absolute paths.
|
||||||
|
|
||||||
2003-08-30 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
2003-08-30 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
* tools/rmkdir.c: Create all (sub)directories in path on win32.
|
* tools/rmkdir.c: Create all (sub)directories in path on win32.
|
||||||
|
|
|
@ -77,6 +77,7 @@ int main(int argc, char* argv[])
|
||||||
FILE* out;
|
FILE* out;
|
||||||
char* csec;
|
char* csec;
|
||||||
int is_abs_path;
|
int is_abs_path;
|
||||||
|
char buf[256];
|
||||||
|
|
||||||
if (argc != 2)
|
if (argc != 2)
|
||||||
{
|
{
|
||||||
|
@ -89,7 +90,8 @@ int main(int argc, char* argv[])
|
||||||
if (isalpha(path1[0]) && path1[1] == ':' && path1[2] == DIR_SEPARATOR_CHAR)
|
if (isalpha(path1[0]) && path1[1] == ':' && path1[2] == DIR_SEPARATOR_CHAR)
|
||||||
{
|
{
|
||||||
csec = strtok(path1, DIR_SEPARATOR_STRING);
|
csec = strtok(path1, DIR_SEPARATOR_STRING);
|
||||||
chdir(csec);
|
sprintf(buf, "%s\\", csec);
|
||||||
|
chdir(buf);
|
||||||
csec = strtok(NULL, DIR_SEPARATOR_STRING);
|
csec = strtok(NULL, DIR_SEPARATOR_STRING);
|
||||||
}
|
}
|
||||||
else if (path1[0] == DIR_SEPARATOR_CHAR)
|
else if (path1[0] == DIR_SEPARATOR_CHAR)
|
||||||
|
|
Loading…
Reference in a new issue