API16

API16:JPath/canChmod

From Joomla! Documentation

Revision as of 14:18, 24 March 2017 by JoomlaWikiBot (talk | contribs) (clean up)

Description

Checks if a path's permissions can be changed


{{subst:Description:JPath/canChmod}}

Syntax

canChmod($path)
Parameter Name Default Value Description
$path $path Path to check

Returns

boolean True if path can have mode changed

Defined in

libraries/joomla/filesystem/path.php

Importing

jimport( 'joomla.filesystem.path' );

Source Body

function canChmod($path)
{
        $perms = fileperms($path);
        if ($perms !== false)
        {
                if (@ chmod($path, $perms ^ 0001))
                {
                        @chmod($path, $perms);
                        return true;
                }
        }
        return false;
}


{{subst:SeeAlso:JPath/canChmod}}

Examples

<CodeExamplesForm />