You are here

public function FTPExtension::isFile in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/FileTransfer/FTPExtension.php \Drupal\Core\FileTransfer\FTPExtension::isFile()

Checks if a particular path is a file (not a directory).

Parameters

string $path: The path to check.

Return value

bool TRUE if the specified path is a file, FALSE otherwise.

Overrides FileTransfer::isFile

File

core/lib/Drupal/Core/FileTransfer/FTPExtension.php, line 97

Class

FTPExtension
Defines a file transfer class using the PHP FTP extension.

Namespace

Drupal\Core\FileTransfer

Code

public function isFile($path) {
  return ftp_size($this->connection, $path) != -1;
}