获取文件名的额外字符

时间:2013-04-12 06:37:51

标签: c++ visual-studio-2012 file-handling cfilefind

我正在使用CFileFind来获取文件列表。我总是遇到一个特定文件的问题。获取带有额外字符的文件标题'?'附上。

原名:_KO - Ennamo Yedho Video Song HD_test .txt

检索名称:_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()  ;
     }

我也在命令提示符中检查相同。发生了问题。有人指导我,我错了。

enter image description here

enter image description here

0 个答案:

没有答案