I have a Folder with many subfolders that also have subfolder in them and they also have subfolders and so on. I need certain files from that folder to be found by python and copied to a destination folder.
I found shutil.copy but this need the complete path to find the file.
How do i copy files with Python that are either in the folder or one of the subfolders or their subfolders... ?
Edit: I dont have the complete Path to the files, the files are somewhere in that folder structre, if i would have the complete path this wouldnt be a problem.