| 18 | } |
| 19 | |
| 20 | bool CBinaryFileWriter::Open(const fs_path &path) |
| 21 | { |
| 22 | bool result = false; |
| 23 | |
| 24 | //if (fs_path_exists(path)) |
| 25 | { |
| 26 | m_File = fs_open(path, FS_WRITE); |
| 27 | result = (m_File != nullptr); |
| 28 | } |
| 29 | |
| 30 | return result; |
| 31 | } |
| 32 | |
| 33 | void CBinaryFileWriter::Close() |
| 34 | { |
no test coverage detected