-

Functions HI-TECH C MKDIR

From HI-TECH C for CP/M Fan WIKI(EN)
Revision as of 22:32, 31 July 2017 by Kumokosi (talk | contribs) (Created page with "<strong>MKDIR, RMDIR<strong> ==SYNOPSIS== #include <sys.h> int mkdir(char * s) int rmdir(char * s) ==DESCRIPTION== These functions allow the creation (<strong>mkdir</...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

MKDIR, RMDIR

SYNOPSIS

#include  <sys.h>

int mkdir(char * s)
int rmdir(char * s)


DESCRIPTION

These functions allow the creation (mkdir()) and deletion (rmdir()) of sub-directories under the MS-DOS operating system. The argument s may be an arbitrary pathname, and the return value will be -1 if the creation or removal was unsuccessful.

SEE ALSO

chdir