WP_Filesystem_Direct::getchmod( string $file )

Gets file permissions


Description Description

FIXME does not handle errors in fileperms()


Parameters Parameters

$file

(string) (Required) Path to the file.


Top ↑

Return Return

(string) Mode of the file (last 3 digits).


Top ↑

Source Source

File: wp-admin/includes/class-wp-filesystem-direct.php

	public function getchmod( $file ) {
		return substr( decoct( @fileperms( $file ) ), -3 );
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.