Hi my BP Function library contains below function to delete file. Where I try to file in Project/Saved/myfiles
It woks perfectly is Windows and Mac, however on IOS on delete file crash. Any help?
bool UMyBlueprintFunctionLibrary::deleteFile(FString AbsoluteFilePath)
{
if (!FPlatformFileManager::Get().GetPlatformFile().DeleteFile(*AbsoluteFilePath))
{
UE_LOG(LogTemp,Log, TEXT("Hello World"));
return;
}
return true;
}