How do you remove all files from subfolders and relocate them to one folder? code example
Example 1: delete folder and its subfolders in python
import shutil
shutil.rmtree('/path/to/your/dir/')
Example 2: remove folder in all sub folders linux command
$ find /start/search/from/this/dir -name "dirname-to-delete" -type d -exec /bin/rm -rf {} +