Method |
Description |
|
copy ( string $path, string $target ) : boolean |
Copy the given file a new location. |
|
get ( string $path ) : string |
Get the contents of a file. |
|
getDefaultConfigurationFile ( ) : string |
Get the default construct configuration file. |
|
getHomeDirectory ( $os = PHP_OS ) : string |
Get the home directory. |
|
hasDefaultConfigurationFile ( ) : boolean |
Determine if system has a default configuration file. |
|
isDirectory ( string $path ) : boolean |
Check if the path is a directory. |
|
isFile ( string $path ) : boolean |
Check if the path is a file. |
|
isReadable ( string $path ) : boolean |
Check if the path is readable. |
|
makeDirectory ( string $path, boolean $recursive = false ) : boolean |
Create a directory |
|
move ( string $path, string $target ) : boolean |
Move the given file to a new location. |
|
put ( string $path, string $contents ) : integer |
Write the contents of a file. |
|