Gaufrette\Adapter\Sftp::createDirectory PHP Méthode

createDirectory() protected méthode

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