TempFileTimeOutSeconds
TempFileTimeOutSeconds
#Overview
name: TempFileTimeOutSeconds
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEngine.ini:57, section: [BackgroundHttp]
- INI Section:
BackgroundHttp
- Raw value:
259200
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Online/BackgroundHTTP/Private/BackgroundHttpManagerImpl.cpp:75
Scope (from outer to inner):
file
function void FBackgroundHttpManagerImpl::DeleteStaleTempFiles
Source code excerpt:
bool bRemoveURLMappingEntriesWithoutPhysicalTempFiles = false;
{
GConfig->GetDouble(TEXT("BackgroundHttp"), TEXT("TempFileTimeOutSeconds"), FileAgeTimeOutSettings, GEngineIni);
bDeleteTimedOutFiles = (FileAgeTimeOutSettings >= 0);
GConfig->GetBool(TEXT("BackgroundHttp"), TEXT("DeleteTempFilesWithoutURLMappingEntries"), bDeleteTempFilesWithoutURLMappings, GEngineIni);
GConfig->GetBool(TEXT("BackgroundHttp"), TEXT("RemoveURLMappingEntriesWithoutPhysicalTempFiles"), bRemoveURLMappingEntriesWithoutPhysicalTempFiles, GEngineIni);