Amranidev\ScaffoldInterface\Filesystem\Filesystem::makeDir PHP Method

makeDir() public method

Make directory.
public makeDir ( string $path ) : void
$path string
return void
    public function makeDir($path)
    {
        if (is_dir($path)) {
            throw new FileAlreadyExists();
        }
        mkdir($path, 0777, true);
    }