Return true if the requested file is embedded in the program
(path)
| 250 | |
| 251 | |
| 252 | def resfs_has(path): |
| 253 | """ |
| 254 | Return true if the requested file is embedded in the program |
| 255 | """ |
| 256 | return has(b'resfs/file/' + _b(path)) |
| 257 | |
| 258 | |
| 259 | def resfs_read(path, builtin=None): |