Creates a new directory based on the specified directory name.
Note You can create only one directory at a time.
Example
/* Make a new directory named \DATA\WAVEFORM on drive C */
/* assuming that C:\DATA does not exist */
MakeDir ("C:\\DATA");
MakeDir ("C:\\DATA\\WAVEFORM");
int MakePathname (char directoryName[], char fileName[], char pathName[]);
PurposeCreates a pathname from a directory name or path and a filename. The subroutine ensures that a backslash separates the directory name or path and the filename.
Examplechar dirname[MAX_PATHNAME_LEN];
char pathname[MAX_PATHNAME_LEN];
GetProjectDir (dirname);
MakePathname (dirname, "FILE.DAT", pathname);