createDirectory 
Requires a Node.js runtime ('qsu/node')Creates a directory with the specified path. Ignores the operation if the directory already exists.
Parameters
filePath::string: File or directory pathrecursive::boolean?|true: Recursively creates all directories in the given path.
Named
Returns
void
Examples
javascript
createDirectory('/home/user/a/b/c');dart
createDirectory('/home/user/a/b/c');