WP_Filesystem_ftpsockets::is_dir()
Checks if resource is a directory.
Method of the class: WP_Filesystem_ftpsockets{}
No Hooks.
Return
true|false
. Whether $path is a directory.
Usage
$WP_Filesystem_ftpsockets = new WP_Filesystem_ftpsockets(); $WP_Filesystem_ftpsockets->is_dir( $path );
- $path(string) (required)
- Directory path.
Changelog
Since 2.5.0 | Introduced. |
WP_Filesystem_ftpsockets::is_dir() WP Filesystem ftpsockets::is dir code WP 6.6.2
public function is_dir( $path ) { $cwd = $this->cwd(); if ( $this->chdir( $path ) ) { $this->chdir( $cwd ); return true; } return false; }