Path
A Path handling class
| since |
1.7.0 |
|---|---|
| package |
Joomla CMS |
Methods
canChmod
Checks if a path's permissions can be changed.
canChmod(string path) : bool
| since |
1.7.0 |
|---|
Arguments
- path
stringPath to check.
Response
boolTrue if path can have mode changed.
check
Checks for snooping outside of the file system root.
check(string path) : string
| since |
1.7.0 |
|---|---|
| throws |
|
Arguments
- path
stringA file system path to check.
Response
stringA cleaned version of the path or exit on error.
clean
Function to strip additional / or \ in a path name.
clean(string path, string ds = DIRECTORY_SEPARATOR) : string
| since |
1.7.0 |
|---|---|
| throws |
|
Arguments
- path
stringThe path to clean.- ds
stringDirectory separator (optional).
Response
stringThe cleaned path.
find
Searches the directory paths for a given file.
find(mixed paths, string file) : mixed
| since |
1.7.0 |
|---|
Arguments
- paths
mixedAn path string or array of path strings to search in- file
stringThe file name to look for.
Response
mixedThe full path and file name for the target file, or boolean false if the file is not found in any of the paths.
getPermissions
Get the permissions of the file/folder at a given path.
getPermissions(string path) : string
| since |
1.7.0 |
|---|
Arguments
- path
stringThe path of a file/folder.
Response
stringFilesystem permissions.
isOwner
Method to determine if script owns the path.
isOwner(string path) : bool
| since |
1.7.0 |
|---|
Arguments
- path
stringPath to check ownership.
Response
boolTrue if the php script owns the path passed.
makePattern
Turn directory separators into match classes
makePattern(string dir) : string
| since |
3.10.7 |
|---|
Arguments
- dir
stringA directory name
Response
string
removeRoot
Remove all references to root directory path and the system tmp path from a message
removeRoot(string message, string rootDirectory = null) : string
| since |
3.10.7 |
|---|
Arguments
- message
stringThe message to be cleaned- rootDirectory
stringOptional root directory, defaults to JPATH_ROOT
Response
string
resolve
Resolves /./, /../ and multiple / in a string and returns the resulting absolute path, inspired by Flysystem Removes trailing slashes
resolve(string path) : string
| since |
3.9.25 |
|---|
Arguments
- path
stringA path to resolve
Response
stringThe resolved path
setPermissions
Chmods files and directories recursively to given permissions.
setPermissions(string path, string filemode = '0644', string foldermode = '0755') : bool
| since |
1.7.0 |
|---|
Arguments
- path
stringRoot path to begin changing mode [without trailing slash].- filemode
stringOctal representation of the value to change file mode to [null = no change].- foldermode
stringOctal representation of the value to change folder mode to [null = no change].
Response
boolTrue if successful [one fail means the whole operation failed].