Create a directory on disk.
| Declaration | zFile.h |
|---|---|
| Implementation | zFile.cpp |
bool zfile_CreateDir(const char* lpDirName);
| Name | Type | Comment |
|---|---|---|
| lpDirName | const char* | A pointer to a C-style string containing the full path of the directory to be created. |
True if the directory was successfully created or already existed, and false otherwise.
None.