LocalDataCachePathCommandLineOverride
LocalDataCachePathCommandLineOverride
#Overview
name: LocalDataCachePathCommandLineOverride
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:2440, section: [Zen.AutoLaunch]
- INI Section:
Zen.AutoLaunch
- Raw value:
LocalDataCachePath
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Developer/Zen/Private/ZenServerInterface.cpp:595
Scope (from outer to inner):
file
namespace UE::Zen
function static void DetermineLocalDataCachePath
Source code excerpt:
FString DataPathCommandLineOverride;
if (GConfig->GetString(ConfigSection, TEXT("LocalDataCachePathCommandLineOverride"), DataPathCommandLineOverride, GEngineIni))
{
FString DataPathCommandLineOverrideValue;
if (FParse::Value(FCommandLine::Get(), *(DataPathCommandLineOverride + TEXT("=")), DataPathCommandLineOverrideValue))
{
DataPath = DataPathCommandLineOverrideValue;
UE_LOG(LogZenServiceInstance, Log, TEXT("Found command line override %s=%s"), *DataPathCommandLineOverride, *DataPath);