I have placed my dll file in specified path and tried obtaining the handle but it won’t work (returns null).
FPaths::FileExists(DllFilename) returned true also, so I know the path exists with the file at that location.
FString DllFilename = FPaths::
ConvertRelativePathToFull(FPaths::Combine(*FPaths::GamePluginsDir(),
TEXT(“TestPlugin”), TEXT(“Binaries”), TEXT(“Win64”), TEXT(“file.dll”)));
DLLHandle = FPlatformProcess::GetDllHandle(*DllFilename);