-

Difference between revisions of "Functions HI-TECH C MKDIR"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(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</...")
 
m
 
Line 1: Line 1:
<strong>MKDIR, RMDIR<strong>
+
<strong>MKDIR, RMDIR</strong>
 
==SYNOPSIS==
 
==SYNOPSIS==
  

Latest revision as of 22:32, 31 July 2017

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