/**
  * Check whether the file or directory exists and is readable.
  *
  * @return bool True if the file or directory exists and is readable, false otherwise.
  * False will also be returned if the path was invalid.
  */
 public function isReadable()
 {
     return FilesystemObjectHelper::isReadable($this);
 }