| 119 | } |
| 120 | |
| 121 | bool CabFile::Load(const StringImpl& path) |
| 122 | { |
| 123 | if (!FileExists(path)) |
| 124 | { |
| 125 | Fail(StrFormat("File '%s' not found", path.c_str())); |
| 126 | return false; |
| 127 | } |
| 128 | mSrcFileName = path; |
| 129 | return true; |
| 130 | } |
| 131 | |
| 132 | bool CabFile::DecompressAll(const StringImpl& destDir) |
| 133 | { |