I am using CFileFind to get files list . i have an issue with one particular file always. getting file title with extra character '?' appended .
original name : _KO - Ennamo Yedho Video Song HD_test.txt
retrieved name : _KO - Ennamo Yedho Video Song HD_test?.txt
CFileFind finder ;
bool bWorking = finder.FindFile ("F:\\*.*") ;
while (bWorking)
{
bWorking = finder.FindNextFile ( ) ;
CString file_lst =finder.GetFileTitle() ;
}
I also check the same in command prompt.Same problem is happening . Someone Guide me where i am wrong .