public function LocalStream::rename

Support for rename().

Parameters

string $from_uri,: The URI to the file to rename.

string $to_uri: The new URI for file.

Return value

bool TRUE if file was successfully renamed.

Overrides PhpStreamWrapperInterface::rename

See also

http://php.net/manual/streamwrapper.rename.php

1 method overrides LocalStream::rename()
LocalReadOnlyStream::rename in drupal/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php
Support for rename().

File

drupal/core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 386
Definition of Drupal\Core\StreamWrapper\LocalStream.

Class

LocalStream
Defines a Drupal stream wrapper base class for local files.

Namespace

Drupal\Core\StreamWrapper

Code

public function rename($from_uri, $to_uri) {
  return rename($this
    ->getLocalPath($from_uri), $this
    ->getLocalPath($to_uri));
}