All provided functionalities are in a public static context.
methodName | Description | Example | |
---|---|---|---|
chmod($filename, $mode) | This method can be used to change file permissions on a *nix system. Expected parameters:
|
The call of the method above grants read, write and execute rights. | |
copy($filename, $destination) | This method copies a file to a given location. Existing files will be overwritten Expected parameters:
Returns: bool |
The call of the method above copies the index.php file to the index2.php file. | |
exists($filename) | This method checks if a file exists at the given location Expected parameters:
Returns: bool |
The call of the method above returns true if the 'var/www/index.php' file exists, otherwise false. | |
getExtension($basename) | This method returns the file extension of the given file Expected parameters:
Returns: string |
The call of the method above returns the string 'php'. | |
info($filename) | This method returns information about the given file. The returing array includes the following information:
Expected parameters:
Returns: array | ||
isDirectoryEmpty($dir) | This method returns checks if the given directory is empty. Expected parameters:
Returns: bool In my opinion this method should be transfered to the cDirHandler class. |
The call of the method above returns true if the given directory exists, otherwise false. | |
move($filename, $destination) | This method changes the location of the given file Expected parameters:
Returns: bool |
The call of the method above moves the index.php file from path '/var/www/' to '/var/www/test/'.
| |
read($filename, $length = 0, $offset = 0, $reverse = false) | This method reads bytes from the given file. Expected parameters:
Optional parameters:
Returns: bool |
| |
readable($filename) | This method checks if the given file is readable. Expected parameters:
Returns: bool |
| |
readLine($filename, $lines = 0, $lineoffset = 0) | This method reads a line from the given file. Expected parameters:
Optional parameters:
Returns:
| ||
recursiveCopy($filename, $destination) | This method should be transfered to the cDirHandler class and refactored, highly recommended! | Siehe cDirHandler | |
recursiveRmdir($dirname) | This method should be transfered to the cDirHandler class, highly recommended! | Siehe cDirHandler | |
remove($filename) | This method removes the given file from the filesystem. Expected parameters:
Returns: bool |
| |
rename($filename, $new_filename) | This method renames the given file from the filesystem. Expected parameters:
Returns: bool | ||
setDefaultDirPerms($pathname) | This method should be transfered to the cDirHandler class, highly recommended! | Siehe cDirHandler | |
setDefaultFilePerms($filename) | This method sets default permissions to the given file Expected parameters:
Returns: bool | ||
truncate($filename) | This method clears the content of the given file Expected parameters:
Returns: bool |
| |
validateFilename($filename, $notifyAndExitOnFailure = true) | This method validates the filename of the given file with CONENTIDO standard. Expected parameters:
Optional parameters:
Returns: bool | ||
write($filename, $content, $append = false) | This method writes data to the given file Expected parameters:
Optional parameters:
Returns: bool | ||
writeable($filename) | This method checks if the given file is writeable Expected parameters:
Returns: bool | ||
writeLine($filename, $content, $append = false) | This method writes a line to the given file Expected parameters:
Optional parameters:
Returns: bool |