Union but create a subdirectory with unioned content

What is the problem you are having with rclone?

Hi. I want to make an union of 3 remotes but instead of having them all in the same folder, I want to create a subdirectory that contains the files of all 3 remotes. I've successfully managed to do an union, but I just want all these files in another subfolder, without modifying the original remotes.

Example:
Remote1:FileA.txt
Remote2:FileB.txt
Remote3:FileC.txt

I want to achieve:
RemoteUnion:NameOfMyFolder\FileA.txt
RemoteUnion:NameOfMyFolder\FileB.txt
RemoteUnion:NameOfMyFolder\FileC.txt

Run the command 'rclone version' and share the full output of the command.

rclone v1.62.2
- os/version: Microsoft Windows Server 2016 Standard 1607 (64 bit)
- os/kernel: 10.0.14393.6167 Build 14393.6167.6167 (x86_64)
- os/type: windows
- os/arch: amd64
- go/version: go1.20.2
- go/linking: static
- go/tags: cmount

You could wrap union in a combine remote

[combine_union]
type = combine
upstreams = NameOfMyFolder=RemoteUnion:

BTW. Update rclone to the latest version