0
CFtpFileFind finder(mConnection);
found = finder.FindFile("*.log");

   while (found)
   {
        found = finder.FindNextFile();

        wsprintf(fileInfo, "%s", finder.GetFileName());

        //need file size of this .log 
        //no member function for this in CFTPFileFind class?

    } 

回答 を編集

finder.GetLength();

4

1 に答える 1

1

CFtpFileFindCFileFindwhich はから派生しているようGetLengh()です。

于 2010-07-27T21:26:17.967 に答える