WP_Filesystem_ftpsockets::is_writable() – Checks if a file or directory is writable.
You appear to be a bot. Output may be restricted
Description
Checks if a file or directory is writable.
Usage
$bool = WP_Filesystem_ftpsockets::is_writable( $path );
Parameters
- $path
- ( string ) required – Path to file or directory.
Returns
bool Whether $path is writable.
Source
File name: wordpress/wp-admin/includes/class-wp-filesystem-ftpsockets.php
Lines:
1 to 3 of 3
public function is_writable( $path ) { return true; }