I have created a JMeter project with the below structure.
Project folder
|-JMeterProject.jmx
|
|-environments-folder
| |-environment1.properties
| |-environment2.properties
|
|-data-folder
|-data1.csv
|-data2.csv
When I try to add this project in to blazemeter, I could not find a way upload the folder.
UPDATE: I retrieve the files using following script
${__BeanShell(import org.apache.jmeter.services.FileServer;FileServer.getFileServer().getBaseDir();)}\environments-folder\\${environment}.properties
Of Course I can change the Jmeter project to refer files in the same folder and copy all in the fame level. But I want to keep the structure the same for various other reasons.
I read through the documentation , but non explains this kind of data file management.
I this something possible?