I have a program that reads in several subfolders of files.
I had previously written code that had :
path = 'C:/Users/Me/etc/etc/'
And then I would open several files by saying
file1 = path + str('file1.txt')
How do I change the code so that it can be used by others? I am using Jupyter notebook and so __file __ and sys(argv[0]) don't seem to be working.
I have looked at these: