public LocalStream::rename($from_uri, $to_uri)
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
File
- core/lib/Drupal/Core/StreamWrapper/LocalStream.php, line 393
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)); }
Please login to continue.