void Utils::rtrim(wstring& s, const wchar_t c) { while (!s.empty() && s.back() == c) { s.pop_back(); } }
void ChkFolderPath(wstring& strPath) { if( strPath.empty() == false && strPath.back() == L'\\' ){ strPath.pop_back(); } }