Millisecond Forums

File not being recognised

https://forums.millisecond.com/Topic18788.aspx

By Eimear - 4/5/2016

Hello,

I have set up an 'include' script where all the parts run fine separately and also run fine when combined except for when I add in one file to collect demographic info. When this is added it says "no such file or directory" and gives error code 5. This file is in the same folder as the others and as far as I can see all spellings are consistent so I'm not sure why it isn't recognising it. Again, this demographics file runs fine on its own too.  

I've attached a zip file of the scripts if needed but any suggestions welcome. 

Thanks,
Eimear
By Dave - 4/5/2016

The error message is correct. The file extension is missing in your <include> elements.

<include>
/ file  = "Imagery.iqx"
/ file  = "Semantic.iqx"
/ file  = "BehaviouralIntentions.iqx"
/ file  = "IAT.iqx"
/ file = "Demographics"
...
</include>

needs to read

<include>
/ file  = "Imagery.iqx"
/ file  = "Semantic.iqx"
/ file  = "BehaviouralIntentions.iqx"
/ file  = "IAT.iqx"
/ file = "Demographics.iqx"
...
</include>
By Eimear - 4/5/2016

Thank you! 
Eimear