1 /* Mkdir for the Macintosh.
2 Public domain by Guido van Rossum, CWI, Amsterdam (July 1987).
3 Pathnames must be Macintosh paths, with colons as separators. */
7 /* Create a directory. */
12 int mode
; /* Ignored */
20 pb
.ioNamePtr
= (StringPtr
) Pstring(path
);
23 if (PBDirCreate((HParmBlkPtr
)&pb
, FALSE
) != noErr
) {