public FTPExtension::isFile($path)
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
1 2 3 | public function isFile( $path ) { return ftp_size( $this ->connection, $path ) != -1; } |
Please login to continue.