I have a folder Dat, and I would like the root folder to be the parent of the project folder. Is there any way I can get access to that folder?
I know that I can use project.folder to access the current folder. But I can’t find a simple way to traverse the directory structure besides importing the ‘sys’ library in Python. Is that the best way to do it, or is there some quick syntax using project.folder?
I’ve also tried project.folder+‘/…/’ which does not work either.
Although now that I’m looking into it, just using project.folder does not work either. Are the parameter fields for folder supposed to be able to evaluate a built in variable like project.folder?