Table of Contents

zfile_CreateDir

Description

Create a directory on disk.

Files

Declaration zFile.h
Implementation zFile.cpp

Function prototype

bool zfile_CreateDir(const char* lpDirName);

Arguments

Name Type Comment
lpDirName const char* A pointer to a C-style string containing the full path of the directory to be created.

Return value

True if the directory was successfully created or already existed, and false otherwise.

Comments

None.