I need OpenFileDialog for html5

Hi everyone,

In build.cs I add
PrivateDependencyModuleNames.AddRange(new string[] { “RHI”, “RenderCore”, “ShaderCore”, “DesktopPlatform” });

but “DesktopPlatform” can’t compile for html5

this is my function

I reality need OpenFileDialog to open file from user client

Is anything like OpenFileDialog for html5?

I find FDesktopPlatformWindows but we don’t have FDesktopPlatformHTML5

anyone help?

In HTML5 you don’t have access to the filesystem (or any access is very limited) so there is no implementation of OpenFileDialog and it’s unlikely there will be any time soon.

Can you build something yourself by listing files in directory and showing them to the user in your own UI?