The Everything_IsAppData function checks if Everything is saving settings and data to %APPDATA%\Everything or to the same location as the Everything.exe.
BOOL Everything_IsAppData(void);
No parameters.
The function returns non-zero if settings and data are saved in %APPDATA%\Everything.
The function returns 0 if settings and data are saved to the same location as the Everything.exe or if an error occurred. To get extended error information, call Everything_GetLastError
Error code | Meaning |
---|---|
EVERYTHING_OK | Settings and data are stored in the same location as the Everything.exe. |
EVERYTHING_ERROR_IPC | Please make sure the Everything search client is running in the background. |
BOOL isAppData;
isAppData = Everything_IsAppData();
Requires Everything 1.4.1 or later.