WP_Filesystem_FTPext::is_writable() WordPress Method
The WP_Filesystem_FTPext::is_writable() method is used to check whether a file or directory is writable by the current user. This is useful for checking if a file can be edited or if a new file can be created in a directory.
WP_Filesystem_FTPext::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-ftpext.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. |