Generator::createDir PHP 메소드

createDir() 공개 메소드

public createDir ( $destination )
    public function createDir($destination)
    {
        if (Filesystem::isDir($destination)) {
            $this->log('exists', $destination);
        } else {
            Filesystem::createDir($destination, 0777);
            $this->log('created', $destination);
        }
    }