'How to pass Jenkins 'file' parameter value to downstream pipeline job

I am looking for solution to pass a 'file' (.csv) parameter value to downstream job. I have tried with below code but its not working.

    build job: "DownstreamJobName",
                            parameters: [
                                string(name: 'Releases', value: "1.2.9"),                                   
                                [$class: "FileParameterValue", name: "test.csv", file: new FileParameterValue.FileItemImpl(new File(env.WORKSPACE/env.filepath))],
                                string(name: 'UserEmail', value: "testemail")
                                ] 

When I got researched got below link that there is an existing defect with file for Jenkins pipeline, dont know whether it got fixed or not. https://issues.jenkins.io/browse/JENKINS-27413



Solution 1:[1]

I am able to solve this like below

propertiesFilePath = "${env.WORKSPACE}/test.csv"                                       
parameters: [
[$class: "FileParameterValue", name: "test.csv", file: new FileParameterValue.FileItemImpl(new File(propertiesFilePath))]                                   
]

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Jeremy Caney