Gaufrette\Adapter\Sftp::createDirectory PHP 메소드

createDirectory() 보호된 메소드

Creates the specified directory and its parents.
protected createDirectory ( string $directory ) : boolean
$directory string The directory to create
리턴 boolean TRUE on success, or FALSE on failure
    protected function createDirectory($directory)
    {
        return $this->sftp->mkdir($directory, 0777, true);
    }