OK I have a specfic folder structure
c:\folder\Main.cst
c:\folder\templates\***.cst
c:\folder\project\settings.csp
c:\folder\project\***.xml
When I load my main.cst into studio and then load settings
from my project folder and run everything is ok.
When I load explorer and do the same thing it fails with file
not found exceptions. It is adding an extra "folder" to the path.
It is not finding the ***.xml files (System.Xml.XmlDocument) because the current directory is
not the same as under studio.
After loading settings in studio the CD is still at main.cst.
After loading settings in explorer the CD is where the settings.csp is
That means all relative paths in my code break. It should be
looking in folder\project\***.xml and its looking in
folder\project\project\***.xml
Cliff