Im just wondering how to make a program search files like an antivirus programs to it ?
This is a discussion on Search ? within the C++ Programming forums, part of the General Programming Boards category; Im just wondering how to make a program search files like an antivirus programs to it ?...
Im just wondering how to make a program search files like an antivirus programs to it ?
well you could always do as your topic says. Our FAQ and forums would be a good place to start, otherwise stfw
HANDLE FindFirstFile(LPCTSTR lpFileName, LPWIN32_FIND_DATA lpFindFileData);
BOOL FindNextFile(HANDLE hFindFile, LPWIN32_FIND_DATA lpFindFileData);
BOOL FindClose(HANDLE hFindFile);
MagosX.com
Give a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime.