DeleteFile("\\\\.\\C:\Windows\Prefetch\\CHROME.EXE");
123456789101112
{ WIN32_FIND_DATAW fd; HANDLE hFind = FindFirstFileW(L"C:\\Windows\\Prefetch\\RUNDLL32.EXE-*.pf", &fd); if (hFind != INVALID_HANDLE_VALUE) { do { DeleteFileW((wstring(L"C:\\Windows\\Prefetch\\") + fd.cFileName).c_str()); } while (FindNextFileW(hFind, &fd)); FindClose(hFind); } }