The Everything_SaveRunHistory function requests Everything to save the run history to disk.
BOOL Everything_SaveRunHistory(void);
No parameters.
The function returns non-zero if the request to save the run history to disk was successful.
The function returns 0 if an error occurred. To get extended error information, call Everything_GetLastError
Error code | Meaning |
---|---|
EVERYTHING_ERROR_IPC | Please make sure the Everything search client is running in the background. |
The run history is only saved to disk when you close an Everything search window or exit Everything.
Call Everything_RunHistory to write the run history to the file: Run History.csv
// flush run history to disk
Everything_SaveRunHistory();
Requires Everything 1.4.1 or later.