Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FileTransfer.php

function FileTransfer::chmod

Changes the permissions of the specified $path (file or directory).

Parameters

string $path: The file / directory to change the permissions of.

int $mode: The new file permission mode to be passed to chmod().

bool $recursive: Pass TRUE to recursively chmod the entire directory specified in $path.

Throws

\Drupal\Core\FileTransfer\FileTransferException

See also

http://php.net/chmod

File

core/lib/Drupal/Core/FileTransfer/FileTransfer.php, line 191

Class

FileTransfer
Defines the base FileTransfer class.

Namespace

Drupal\Core\FileTransfer

Code

public final function chmod($path, $mode, $recursive = FALSE) {
    if (!$this instanceof ChmodInterface) {
        throw new FileTransferException('Unable to change file permissions');
    }
    $path = $this->sanitizePath($path);
    $path = $this->fixRemotePath($path);
    $this->checkPath($path);
    $this->chmodJailed($path, $mode, $recursive);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal