Description of the problem: When I want to load a resource .csv with a participant number in it, the following error message appears.
Now, I have had this error before, but this was during the era where there was a dedicated html folder. Unsure what the procedure is for this new pavlovia directory/folder structure.
I have tried using a .xls files instead of .csv to no avail. The experiment works fine online if I ask for resource file without participant number info. But that would not work for my experiment as each participant experiences a completely different set of stimuli.
This does not work either. Although I can see that the loader is loading 1 additional resource. So the file is there somewhere, the file variable is correct, but they are not resulting in loading the participant specific file.
Looking at your file it looks like your csv is called “101encPrep.csv” but your code component is creating the file name condiFile = str(int(expInfo['participant']))+'_encPrep.csv' - with an underscore. You need to change your code component to condiFile = str(int(expInfo['participant']))+'encPrep.csv'