You are here

public function SystemStreamWrapper::rename in System stream wrapper 7

Support for rename().

Parameters

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

$to_uri: The new URI for file.

Return value

TRUE if file was successfully renamed.

Overrides DrupalLocalStreamWrapper::rename

See also

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

File

./SystemStreamWrapper.inc, line 78

Class

SystemStreamWrapper
Drupal system stream wrapper abstract class.

Code

public function rename($from_uri, $to_uri) {
  return FALSE;
}