There are a lot of questions like this, and I've actually found a way to do it
for root, dirs, files in os.walk(".", topdown=False):
for name in files:
(os.path.join(root, name))
But how to put all those in a single list? I want that function to return a single list with all the paths, how can I do that?