Amranidev\ScaffoldInterface\Filesystem\Filesystem::makeDir PHP Méthode

makeDir() public méthode

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