-def delete_dir_contents(dir_path):
- for file_name in os.listdir(dir_path):
- file_path = os.path.join(dir_path, file_name)
- if os.path.isfile(file_path) or os.path.islink(file_path):
- os.unlink(file_path)
- elif os.path.isdir(file_path):
- shutil.rmtree(file_path)
-
-def _is_media_file(file_path, types=['image', 'video']):