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