API15:JPath/canChmod
From Joomla! Documentation
Description
Checks if a path's permissions can be changed
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples