Hi all,
I am trying to write a code that determines
the path of the currently running java file.
I know that in python, you do
os.path.join(sys.path[0], sys.argv[0])
in order to figure this out,
but is there any equivalent code like this in java?
Thanks!