I am wondering if there is a way of getting the path to the currently executing lua script file?
This is specifically not the current working directory, which could be
if you want the actual path :
path.dirname(path.abspath(debug.getinfo(1).short_src))
else use this for full file path :
path.abspath(debug.getinfo(1).short_src)