You are here

public function AmazonS3StreamWrapper::stream_stat in AmazonS3 7

Support for fstat().

Return value

array An array with file status, or FALSE in case of an error - see fstat() for a description of this array.

Overrides StreamWrapperInterface::stream_stat

See also

http://php.net/manual/en/streamwrapper.stream-stat.php

File

./AmazonS3StreamWrapper.inc, line 671
Drupal stream wrapper implementation for Amazon S3

Class

AmazonS3StreamWrapper
@file Drupal stream wrapper implementation for Amazon S3

Code

public function stream_stat() {
  return $this
    ->_stat();
}