FileSystem.createDir

Create a new directory.

interface FileSystem
bool
createDir
(
string path
,)

Return Value

Type: bool

true if a new directory was created

Examples

fs.createDir("New Directory", false);
fs.createDir("nested/directories/are/easy", true);

Meta