hi jand, I guess that the problems you are observing are related to the resolvedPath. os.Readlink obviously returns the absolute path to the rexroth-solutions snap, which can’t be accessed from outside. As you are using this path as a base path for configurationPath and configurationFile, os.Mkdir and ioutil.WriteFile won’t probably work either (you just don’t check for errors here). Instead of the resolvedPath, use the path you have already assigned to the activeConfiguration variable. This path addresses the rexroth-solutions snap through the solutions slot, which should work as expected. hope this helps, Andreas
... View more