有哪位C++大神知道UE4的API手册里有没有删除硬盘文件的接口函数?
发布网友
发布时间:2022-04-25 06:35
我来回答
共2个回答
热心网友
时间:2023-11-03 17:53
如果你知道需要删除文件的名字,直接 使用 remove 就好了。
热心网友
时间:2023-11-03 17:53
FString CompleteFilePath = "E:/MyProject/SaveFiles/Today/SaveFile1.SAV";
if( ! FPlatformFileManager::Get().GetPlatformFile().DeleteFile(*CompleteFilePath))
{
UE_LOG(...., "Could Not Find File");
return;
}
参考:
https://wiki.unrealengine.com/File_Management,_Create_Folders,_Delete_Files,_and_More#Delete_File