My question is simple: I need to pass a string (a path and a file name) only once to a module, for the functions in that module to use. In other words, the functions need a path (and file name) for them to work, and it's not practical to pass that string each time I call a function.
Is there a way I could actually pass a string once (maybe change it later during script) and keep it saved somehow in the module for later use?