FOF30\Platform\Joomla\Filesystem::folderCreate PHP Method

folderCreate() public method

Create a folder -- and all necessary parent folders.
public folderCreate ( string $path = '', integer $mode = 493 ) : boolean
$path string A path to create from the base path.
$mode integer Directory permissions to set for folders created. 0755 by default.
return boolean True if successful.
    public function folderCreate($path = '', $mode = 0755)
    {
        return \JFolder::create($path, $mode);
    }