API17

JPath::setPermissions

From Joomla! Documentation

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JPath::setPermissions[edit]

Description[edit]

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 Joomla 11.1
  • Referenced by

See also[edit]


User contributed notes[edit]

Code Examples[edit]