CreateDir

This function creates a new directory.

Syntax

Parameters

Remarks

This function will have no effect if Lua sandboxing is enabled.

Example

#include "Leadwerks.h"

using namespace Leadwerks;

int main(int argc, const char *argv[])
{
//Create a folder
std::string path = "MyDir";
FileSystem::CreateDir(path);

return 0;
}