AS
IDesktopPlatform* DesktopPlatform = FDesktopPlatformModule::Get();
if (DesktopPlatform)
{
TArray<FString> OutFilenames;
bool bIsFileOpen = DesktopPlatform->OpenFileDialog(ParentWindowHandle, FString("Load SVG file"), FPaths::GetProjectFilePath(), FString(""), FString("svg|*.svg;"), EFileDialogFlags::None, OutFilenames);
if (bIsFileOpen)
{ ... }
}


