kmake_dir - make a directory and all parent directories if necessary
LIBRARY CALL
int kmake_dir(
const char *path,
mode_t mode)
INPUT
path - directory to create
mode - octal permission mode of the new directory
OUTPUT
none
RETURN VALUE
TRUE (1) on success, FALSE (0) on failure
DESCRIPTION
This routine calls kmkdir as many times as needed
to build a new directory. This means that if making
a directory, and the parent directories do not exist,
it will first make all the parent directories that
are needed, and then create the directory requested by
the calling routine.
ADDITIONAL INFORMATION
none
EXAMPLES
none
SIDE EFFECTS
none
RESTRICTIONS
none
MODIFICATION
none
FILES
$BOOTSTRAP/objects/library/kutils/src/dir.c
SEE ALSO
kutils(3)
COPYRIGHT
Copyright (C) 1993 - 1997, Khoral Research, Inc. ("KRI") All rights reserved.