WP_Filesystem_FTPext::is_writable
Checks if a file or directory is writable.
Method of the class: WP_Filesystem_FTPext{}
No Hooks.
Returns
true|false. Whether $path is writable.
Usage
$WP_Filesystem_FTPext = new WP_Filesystem_FTPext(); $WP_Filesystem_FTPext->is_writable( $path );
- $path(string) (required)
- Path to file or directory.
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_FTPext::is_writable() WP Filesystem FTPext::is writable code WP 6.9
public function is_writable( $path ) {
return true;
}