I'm trying to get a file run some operations and then save a new file using Python to set file paths, but I can't for the life of me get it to work.
Basic Python to build the file path:
name = 'SM_Floor_3x3_01_High' highStart = 'S:/Jona_Marklund/_P3/Sculpts/' lowStart = '"S:/Jona_Marklund/_P3/Low/' highEnd = '.OBJ' lowEnd = '.fbx' highName = highStart + name + highEnd name = name.replace('_High', '') lowName = lowStart + name + lowEnd print highName print lowName
So, I want to push “highName” into file2's Geometry File field and load that file.

And push “lowName” into rop_fbx1's Output File field and be able to Save to Disk.

Would love to get some input on how I could do this.
Best Regards
//Jona