CString strPath=_T("data\\GUBA");
CString strFileName=_T("\\a.txt");
CString GetTruePath( CString strPath, CString strFileName )
{
wstring sFileFullPath; CString strValue;
strValue.Format( _T("%s\\%s"), strPath, strFileName ); _T("data\\GUBA\\a.txt")
sFileFullPath = PathFunction::CombinePath( PathFunction::GetWorkDir().c_str(), strValue );
strValue = sFileFullPath.c_str(); d:\work\pro\bin\debug\data\\GUBA\\a.txt
return strValue;
}