UE5文件操作

首先在虚幻引擎中创建UMyBlueprintFunctionLibrary类,可以在该类中写我们重复利用的功能,并且这些功能不依赖于特定的游戏对象,方便全局调用。

1.文件的读取和写入

cpp 复制代码
	UFUNCTION(BlueprintCallable, Category = "File")
	static bool loadStringFromFile(FString filePath, FString& resultString);
	UFUNCTION(BlueprintCallable, Category = "File")
	static bool writeStringToFile(TArray<FString> saveFile, FString filePath);
cpp 复制代码
bool UMyBlueprintFunctionLibrary::loadStringFromFile(FString filePath, FString& resultString)
{
	if (!filePath.IsEmpty())
	{
		if (FFileHelper::LoadFileToString(resultString, *filePath))
		{
			return true;
		}
		else
		{
			//error
		}
	}
	return false;
}

bool UMyBlueprintFunctionLibrary::writeStringToFile(TArray<FString> saveFile, FString filePath)
{
	if (!filePath.IsEmpty())
	{
		if (FFileHelper::SaveStringArrayToFile(saveFile, *filePath))
		{
			return true;
		}
		else
		{
			//error
		}
	}
	return false;
}

2.获取文件名、后缀名、文件名

cpp 复制代码
	UFUNCTION(BlueprintCallable, Category = "File")
	static FString GetFilePath(FString path);
	UFUNCTION(BlueprintCallable, Category = "File")
	static FString GetFileName(FString InPath,bool bRemovePath);
	UFUNCTION(BlueprintCallable, Category = "File")
	static FString GetFileExtension(FString InPath, bool bInCludeDot);
cpp 复制代码
FString UMyBlueprintFunctionLibrary::GetFilePath(FString path)
{
	FString result;
	result = FPaths::GetPath(*path);
	return result;
}

FString UMyBlueprintFunctionLibrary::GetFileName(FString InPath, bool bRemovePath)
{
	return FPaths::GetBaseFilename(*InPath,bRemovePath);
}

FString UMyBlueprintFunctionLibrary::GetFileExtension(FString InPath, bool bInCludeDot)
{
	return FPaths::GetExtension(*InPath,bInCludeDot);
}

3.创建文件夹和删除文件夹

cpp 复制代码
	UFUNCTION(BlueprintCallable, Category = "File")
	static void CreateFolder(FString FolderName);
	UFUNCTION(BlueprintCallable, Category = "File")
	static void DeleteFolder(FString FolderName);

在cpp中引入FileManagerGeneric.h

cpp 复制代码
#include "Runtime/Core/Public/HAL/FileManagerGeneric.h"
cpp 复制代码
void UMyBlueprintFunctionLibrary::CreateFolder(FString FolderName)
{
	//FString path = FPaths::ProjectContentDir();
	FPlatformFileManager::Get().GetPlatformFile().CreateDirectoryTree(*FolderName);
}

void UMyBlueprintFunctionLibrary::DeleteFolder(FString FolderName)
{
	//FString path = FPaths::ProjectContentDir();
	FPlatformFileManager::Get().GetPlatformFile().DeleteDirectoryRecursively(*FolderName);
}

4.文件的移动和查找

cpp 复制代码
	UFUNCTION(BlueprintCallable, Category = "File")
	static bool MoveFileTo(FString To, FString From);
	UFUNCTION(BlueprintCallable, Category = "File")
	static TArray<FString> FindFileFolder(FString Path, FString Filter, bool Files, bool Directory);
cpp 复制代码
bool UMyBlueprintFunctionLibrary::MoveFileTo(FString To, FString From)
{
	return IFileManager::Get().Move(*To,*From);
}

TArray<FString> UMyBlueprintFunctionLibrary::FindFileFolder(FString Path, FString Filter, bool Files, bool Directory)
{
	TArray<FString> FilePathList;
	FilePathList.Empty();
	FFileManagerGeneric::Get().FindFilesRecursive(FilePathList, *Path, *Filter, Files, Directory);
	return FilePathList;
}

5.全部代码

h文件部分:

cpp 复制代码
// Fill out your copyright notice in the Description page of Project Settings.

#pragma once

#include "CoreMinimal.h"
#include "Kismet/BlueprintFunctionLibrary.h"
#include "MyBlueprintFunctionLibrary.generated.h"

/**
 * 
 */
UCLASS()
class STUDYCODEPROJECT_API UMyBlueprintFunctionLibrary : public UBlueprintFunctionLibrary
{
	GENERATED_BODY()
public:
	UFUNCTION(BlueprintCallable, Category = "File")
	static bool loadStringFromFile(FString filePath, FString& resultString);
	UFUNCTION(BlueprintCallable, Category = "File")
	static bool writeStringToFile(TArray<FString> saveFile, FString filePath);
	UFUNCTION(BlueprintCallable, Category = "File")
	static FString GetFilePath(FString path);
	UFUNCTION(BlueprintCallable, Category = "File")
	static FString GetFileName(FString InPath,bool bRemovePath);
	UFUNCTION(BlueprintCallable, Category = "File")
	static FString GetFileExtension(FString InPath, bool bInCludeDot);
	UFUNCTION(BlueprintCallable, Category = "File")
	static void CreateFolder(FString FolderName);
	UFUNCTION(BlueprintCallable, Category = "File")
	static void DeleteFolder(FString FolderName);
	UFUNCTION(BlueprintCallable, Category = "File")
	static bool MoveFileTo(FString To, FString From);
	UFUNCTION(BlueprintCallable, Category = "File")
	static TArray<FString> FindFileFolder(FString Path, FString Filter, bool Files, bool Directory);
};

cpp文件部分:

cpp 复制代码
// Fill out your copyright notice in the Description page of Project Settings.


#include "MyBlueprintFunctionLibrary.h"
#include "Runtime/Core/Public/HAL/FileManagerGeneric.h"

bool UMyBlueprintFunctionLibrary::loadStringFromFile(FString filePath, FString& resultString)
{
	if (!filePath.IsEmpty())
	{
		if (FFileHelper::LoadFileToString(resultString, *filePath))
		{
			return true;
		}
		else
		{
			//error
		}
	}
	return false;
}

bool UMyBlueprintFunctionLibrary::writeStringToFile(TArray<FString> saveFile, FString filePath)
{
	if (!filePath.IsEmpty())
	{
		if (FFileHelper::SaveStringArrayToFile(saveFile, *filePath))
		{
			return true;
		}
		else
		{
			//error
		}
	}
	return false;
}

FString UMyBlueprintFunctionLibrary::GetFilePath(FString path)
{
	FString result;
	result = FPaths::GetPath(*path);
	return result;
}

FString UMyBlueprintFunctionLibrary::GetFileName(FString InPath, bool bRemovePath)
{
	return FPaths::GetBaseFilename(*InPath,bRemovePath);
}

FString UMyBlueprintFunctionLibrary::GetFileExtension(FString InPath, bool bInCludeDot)
{
	return FPaths::GetExtension(*InPath,bInCludeDot);
}

void UMyBlueprintFunctionLibrary::CreateFolder(FString FolderName)
{
	//FString path = FPaths::ProjectContentDir();
	FPlatformFileManager::Get().GetPlatformFile().CreateDirectoryTree(*FolderName);
}

void UMyBlueprintFunctionLibrary::DeleteFolder(FString FolderName)
{
	//FString path = FPaths::ProjectContentDir();
	FPlatformFileManager::Get().GetPlatformFile().DeleteDirectoryRecursively(*FolderName);
}

bool UMyBlueprintFunctionLibrary::MoveFileTo(FString To, FString From)
{
	return IFileManager::Get().Move(*To,*From);
}

TArray<FString> UMyBlueprintFunctionLibrary::FindFileFolder(FString Path, FString Filter, bool Files, bool Directory)
{
	TArray<FString> FilePathList;
	FilePathList.Empty();
	FFileManagerGeneric::Get().FindFilesRecursive(FilePathList, *Path, *Filter, Files, Directory);
	return FilePathList;
}
相关推荐
向阳@向远方17 分钟前
第二章 简单程序设计
开发语言·c++·算法
Mr_Xuhhh1 小时前
信号与槽的总结
java·开发语言·数据库·c++·qt·系统架构
liulilittle1 小时前
VGW 虚拟网关用户手册 (PPP PRIVATE NETWORK 基础设施)
开发语言·网络·c++·网关·智能路由器·路由器·通信
漫游者Nova2 小时前
虚幻引擎Unreal Engine5恐怖游戏设计制作教程,从入门到精通从零开始完整项目开发实战详细讲解中英字幕
ue5·游戏引擎·虚幻·游戏开发完整教程·恐怖游戏开发
ruanjiananquan992 小时前
c,c++语言的栈内存、堆内存及任意读写内存
java·c语言·c++
持梦远方2 小时前
C 语言基础入门:基本数据类型与运算符详解
c语言·开发语言·c++
江理不变情3 小时前
图像质量对比感悟
c++·人工智能
apocelipes4 小时前
记一次ADL导致的C++代码编译错误
c++·开发工具和环境
Code Warrior5 小时前
【每日算法】专题五_位运算
开发语言·c++
OneQ6669 小时前
C++讲解---创建日期类
开发语言·c++·算法