WP_Filesystem_Base::getchmod
Gets the permissions of the specified file or filepath in their octal format.
Method of the class: WP_Filesystem_Base{}
No Hooks.
Returns
String. Mode of the file (the last 3 digits).
Usage
$WP_Filesystem_Base = new WP_Filesystem_Base(); $WP_Filesystem_Base->getchmod( $file );
- $file(string) (required)
- Path to the file.
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_Base::getchmod() WP Filesystem Base::getchmod code WP 7.0
public function getchmod( $file ) {
return '777';
}