Creates a directory with a specified name and access mode.
#include <prio.h> PRStatus PR_MkDir( const char *name, PRIntn mode);
The function has the following parameters:
namemodePR_CREATE_FILE is on.00400. Read by owner.00200. Write by owner.00100. Search by owner.00040. Read by group.00020. Write by group.00010. Search by group.00004. Read by others.00002. Write by others.00001. Search by others.PR_SUCCESS.PR_FAILURE. The actual reason can be retrieved via PR_GetError.PR_MkDir creates a new directory with the pathname name. All the path components up to but not including the leaf component must already exist. For example, if the pathname of the directory to be created is a/b/c/d, the directory a/b/c must already exist.