Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X
So basically I'm looking for a variable to reference the working directory in the config.pro file.
Similar to this line: drawing_setup_file $PRO_DIRECTORY\text\prodetail.dtl
Except for the working directory. I've got the Creo shortcut loading to a specified dir, and want my config.pro to load the tree.cfg file.
aka: mdl_tree_cfg_file <working_dir>\tree.cfg
Thanks
Solved! Go to Solution.
Hi,
if you want to load tree.cfg from startup directory, then create config.pro in startup directory and put the following option in it:
mdl_tree_cfg_file .\tree.cfg
Martin Hanak
Hi,
if you want to load tree.cfg from startup directory, then create config.pro in startup directory and put the following option in it:
mdl_tree_cfg_file .\tree.cfg
Martin Hanak
Oh wow, what a brain fart. I tried it with the double period not the single. Works like a charm, thanks.