FS_MakeDirectoryΒΆ

FS_MakeDirectory creates a new directory.

bool = FS_MakeDirectory(ssPath)

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

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")

id-805853