CreateDummyFileInPersistentStorage

CreateDummyFileInPersistentStorage

#Overview

name: CreateDummyFileInPersistentStorage

This variable is created as a Console Variable (cvar).

It is referenced in 1 C++ source file.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/HAL/IPlatformFileManagedStorageWrapper.cpp:112

Scope: file

Source code excerpt:


static FAutoConsoleCommand CreateDummyFileInPersistentStorageCommand(
	TEXT("CreateDummyFileInPersistentStorage"),
	TEXT("Create a dummy file with specified size in specified persistent storage folder"),
	FConsoleCommandWithArgsDelegate::CreateLambda([](const TArray<FString>& Args)
{
	if (Args.Num() < 2)
	{
		UE_LOG(LogPlatformFileManagedStorage, Error, TEXT("Not enough parameters to run console command CreateDummyFileInPersistentStorage"));