AssetTools.LogFolderPermissions

AssetTools.LogFolderPermissions

#Overview

name: AssetTools.LogFolderPermissions

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/Developer/AssetTools/Private/AssetTools.cpp:440

Scope (from outer to inner):

file
namespace    UE::AssetTools::Private

Source code excerpt:


	FAutoConsoleCommand LogFolderPermissionsCommand = FAutoConsoleCommand(
		TEXT("AssetTools.LogFolderPermissions"),
		TEXT("Logs the read and write permissions for folders"),
		FConsoleCommandWithArgsDelegate::CreateLambda(
			[](const TArray<FString>& Args)
			{
				UE_LOG(LogAssetTools, Log, TEXT("Folder Read Permissions:\n%s"), *IAssetTools::Get().GetFolderPermissionList()->ToString());
				UE_LOG(LogAssetTools, Log, TEXT("Folder Write Permissions:\n%s"), *IAssetTools::Get().GetWritableFolderPermissionList()->ToString());