You are here

public function S3fsStream::realpath in S3 File System 8.2

Same name and namespace in other branches
  1. 8.3 src/StreamWrapper/S3fsStream.php \Drupal\s3fs\StreamWrapper\S3fsStream::realpath()
  2. 4.0.x src/StreamWrapper/S3fsStream.php \Drupal\s3fs\StreamWrapper\S3fsStream::realpath()

This wrapper does not support realpath().

Return value

bool Always returns FALSE.

Overrides StreamWrapperInterface::realpath

File

src/StreamWrapper/S3fsStream.php, line 327

Class

S3fsStream
Defines a Drupal s3fs (s3fs://) stream wrapper class.

Namespace

Drupal\s3fs\StreamWrapper

Code

public function realpath() {
  $this
    ->_debug("realpath() called for {$this->uri}. S3fsStream does not support this function.");
  return FALSE;
}