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