| 209 | } |
| 210 | |
| 211 | bool RenameFileX(string const & fOld, string const & fNew) |
| 212 | { |
| 213 | int res = rename(fOld.c_str(), fNew.c_str()); |
| 214 | return CheckFileOperationResult(res, fOld); |
| 215 | } |
| 216 | |
| 217 | bool MoveFileX(string const & fOld, string const & fNew) |
| 218 | { |