Given one root directory, I need to import all files from all folders (and folders inside other folders) under the root directory.
I figured this could maybe be done with the help of os.walk()
, but no idea how to import the files after "walking" through them.
Is there an easy way to do this?