FS_MakeDirectory creates a new directory.
Return Value
bool is TRUE (1) if the directory could be created, otherwise FALSE (0). If the directory already exists, the function returns FALSE (0).
Parameters
ssPath is the directory name.
Example
The following function call creates the directory b12. If the directory d:\Project-123\a34 does not exist it will be created as well.
FS_MakeDirectory("d:\Project-123\a34\b12")
See also
id-805853