| 394 | } |
| 395 | |
| 396 | bool sys_file_is_error(sys_file_t& f) |
| 397 | { |
| 398 | return f.type == SYS_FILE_ERROR || (f.type == SYS_FILE_FILE && f.handle == KYTY_INVALID_HANDLE_VALUE()); |
| 399 | } |
| 400 | |
| 401 | bool sys_file_is_directory_existing(const String& path) |
| 402 | { |
no test coverage detected