How do I get the absolute paths of all the files in a directory that could have many sub-folders in Python?
I know os.walk() recursively gives me a list
os.walk()
from glob import glob def absolute_file_paths(directory): return glob(join(directory, "**"))