WP_Filesystem_ftpsockets::is_writable( string $path )
Checks if a file or directory is writable.
Parameters
- $path
-
(Required) Path to file or directory.
Return
(bool) Whether $path is writable.
Source
File: wp-admin/includes/class-wp-filesystem-ftpsockets.php
public function is_writable($file) {
return true;
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |