以下是 CFileFind::GetLength 方法的基本用法:
CFileFind finder;
BOOL bFound = finder.FindFile(_T("C:\\YourFolderPath\\YourFile.*"));
if (bFound) {
finder.FindNextFile();
ULONGLONG fileLength = finder.GetLength();
// 在这里可以使用 fileLength,它包含了找到的文件的长度(以字节为单位)
finder.Close();
}
在这个示例中,首先创建了一个 CFileFind 对象 finder,然后使用 FindFile 方法设置要查找的文件路径。接着,使用 FindNextFile 方法找到下一个文件,并通过 GetLength 方法获取文件的长度。
请替换示例中的文件路径为您实际想要查找的文件路径。在使用完 CFileFind 对象后,最好调用 Close 方法来关闭查找。
转载请注明出处:http://www.zyzy.cn/article/detail/17804/MFC/CFileFind