WP_Filesystem_Base::is_dir() WordPress Method
The WP_Filesystem_Base::is_dir() method is used to check whether a given directory exists. This can be useful when you need to check if a certain directory exists before performing any operations on it.
WP_Filesystem_Base::is_dir( string $path ) #
Checks if resource is a directory.
Parameters
- $path
(string)(Required)Directory path.
Return
(bool) Whether $path is a directory.
Source
File: wp-admin/includes/class-wp-filesystem-base.php
public function is_dir( $path ) { return false; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |