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