WP_Filesystem_ftpsockets::is_writable() WordPress Method
The WP_Filesystem_ftpsockets::is_writable() method is used to check whether a given file or directory is writable. This is useful for making sure that a file can be written to before trying to write to it.
WP_Filesystem_ftpsockets::is_writable( string $file ) #
Checks if a file or directory is writable.
Contents
Parameters
- $file
(string)(Required)Path to file or directory.
Return
(bool) Whether $file is writable.
Source
File: wp-admin/includes/class-wp-filesystem-ftpsockets.php
public function is_writable( $file ) { return true; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |