protected function FileTransferSSH::createDirectoryJailed

protected FileTransferSSH::createDirectoryJailed($directory)

Creates a directory.

Parameters

$directory: The directory to be created.

Overrides FileTransfer::createDirectoryJailed

File

includes/filetransfer/ssh.inc, line 46

Class

FileTransferSSH
The SSH connection class for the update module.

Code

protected function createDirectoryJailed($directory) {
  if (@!ssh2_exec($this->connection, 'mkdir ' . escapeshellarg($directory))) {
    throw new FileTransferException('Cannot create directory @directory.', NULL, array('@directory' => $directory));
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!filetransfer!ssh.inc/function/FileTransferSSH::createDirectoryJailed/7.x