Amranidev\ScaffoldInterface\Filesystem\Filesystem::makeDir PHP 메소드

makeDir() 공개 메소드

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