Windows下列出所有文件 FindFirstFile
摘要:
#include <windows.h>#include <tchar.h> #include <stdio.h>#include <strsafe.h>#pragma comment(lib, "User32.lib")void DisplayErrorBox(LPTSTR lpszFunction);int _tmain(int argc, TCHAR *argv[]){ WIN32_FIND_DATA ffd; LARGE_INTEGER filesize; TCHAR szDir[MAX_PATH]; size_t l 阅读全文
posted @ 2013-03-09 19:12 cv_ml_张欣男 阅读(236) 评论(0) 推荐(0) 编辑