function hackedFileGroup::is_not_binary in Hacked! 6.2
Same name and namespace in other branches
- 7.2 includes/hackedFileGroup.inc \hackedFileGroup::is_not_binary()
Determine if the given file is binary.
File
- includes/
hacked_project.inc, line 675
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);
}