API17:JPath::setPermissions
From Joomla! Documentation
JPath::setPermissions
Description
Chmods files and directories recursivly to given permissions.
public static function setPermissions (
$path
$filemode= '0644'
$foldermode= '0755'
)
| Parameter | Type | Default | Description |
|---|---|---|---|
| $path | string | Root path to begin changing mode [without trailing slash] | |
| $filemode | string | '0644' | Octal representation of the value to change file mode to [null = no change] |
| $foldermode | string | '0755' | Octal representation of the value to change folder mode to [null = no change] |
- Returns boolean True if successful [one fail means the whole operation failed]
- Defined on line 67 of libraries/joomla/filesystem/path.php
- Since

- Referenced by
See also
JPath::setPermissions source code on BitBucket
Class JPath
Subpackage Filesystem- Other versions of JPath::setPermissions
User contributed notes
Code Examples