| 411 | } |
| 412 | |
| 413 | bool isPortableInstall() |
| 414 | { |
| 415 | // Support "Portable" methods as well. |
| 416 | char portableSettingsPath[TFE_MAX_PATH]; |
| 417 | TFE_Paths::appendPath(PATH_PROGRAM, "settings.ini", portableSettingsPath); |
| 418 | if (FileUtil::exists(portableSettingsPath)) |
| 419 | { |
| 420 | return true; |
| 421 | } |
| 422 | return false; |
| 423 | } |
| 424 | |
| 425 | void getAllFilesFromSearchPaths(const char* subdirectory, const char* ext, FileList& allFiles) |
| 426 | { |
no test coverage detected