public FTPExtension::isDirectory($path)
Checks if a particular path is a directory.
Parameters
string $path: The path to check
Return value
bool TRUE if the specified path is a directory, FALSE otherwise.
Overrides FileTransfer::isDirectory
File
- core/lib/Drupal/Core/FileTransfer/FTPExtension.php, line 84
Class
- FTPExtension
- Defines a file transfer class using the PHP FTP extension.
Namespace
Drupal\Core\FileTransfer
Code
1 2 3 4 5 6 7 8 9 | public function isDirectory( $path ) { $result = FALSE; $curr = ftp_pwd( $this ->connection); if (@ftp_chdir( $this ->connection, $path )) { $result = TRUE; } ftp_chdir( $this ->connection, $curr ); return $result ; } |
Please login to continue.