WP_Filesystem_FTPext::is_dir
Checks if resource is a directory.
Method of the class: WP_Filesystem_FTPext{}
No Hooks.
Returns
true|false. Whether $path is a directory.
Usage
$WP_Filesystem_FTPext = new WP_Filesystem_FTPext(); $WP_Filesystem_FTPext->is_dir( $path );
- $path(string) (required)
- Directory path.
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_FTPext::is_dir() WP Filesystem FTPext::is dir code WP 6.9.1
public function is_dir( $path ) {
$cwd = $this->cwd();
$result = @ftp_chdir( $this->link, trailingslashit( $path ) );
if ( $result && $path === $this->cwd() || $this->cwd() !== $cwd ) {
@ftp_chdir( $this->link, $cwd );
return true;
}
return false;
}