You are here

public function LocalStream::rename in System stream wrapper 8

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 src/StreamWrapper/LocalReadOnlyStream.php
Support for rename().

File

src/StreamWrapper/LocalStream.php, line 334

Class

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

Namespace

Drupal\system_stream_wrapper\StreamWrapper

Code

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