Hi All,
I have problem opening a uppercase letter filename. Z2.xml
It works fine if I rename both the filename and the varaible in the script into lower case, z2.xml
Not Working (with filename Z2.xml):
QxmlString = "Z2"
In = File.OpenInput(File.DirAssets, QxmlString & ".xml")
Working (with filename z2.xml):
QxmlString = "z2"
In = File.OpenInput(File.DirAssets, QxmlString & ".xml")
Thank you all for your help.
Cheers,
James
I have problem opening a uppercase letter filename. Z2.xml
It works fine if I rename both the filename and the varaible in the script into lower case, z2.xml
Not Working (with filename Z2.xml):
QxmlString = "Z2"
In = File.OpenInput(File.DirAssets, QxmlString & ".xml")
Working (with filename z2.xml):
QxmlString = "z2"
In = File.OpenInput(File.DirAssets, QxmlString & ".xml")
Thank you all for your help.
Cheers,
James