I'm using mega.py to upload a file and works fine but i'd like to know if there is a way to a get a mega directory as a full path (string) to use with others services
from mega import Mega
mega = Mega()
m = mega.login('email','password')
folder = m.find('my_mega_folder')
m.upload('myfile.doc', folder[0])
i'd like to get path to use instead of upload()