function hackedFileGroup::file_exists in Hacked! 7.2
Same name and namespace in other branches
- 6.2 includes/hacked_project.inc \hackedFileGroup::file_exists()
Determine if a file exists.
File
- includes/
hackedFileGroup.inc, line 79
Class
- hackedFileGroup
- Represents a group of files on the local filesystem.
Code
function file_exists($file) {
return file_exists($this->base_path . '/' . $file);
}