Skip to content

Instantly share code, notes, and snippets.

@andybak
Created August 30, 2022 13:46
Show Gist options
  • Save andybak/3190091e6dc9276868c5ad91d323ef6b to your computer and use it in GitHub Desktop.
Save andybak/3190091e6dc9276868c5ad91d323ef6b to your computer and use it in GitHub Desktop.
import os
import shutil
d = r"D:\Backups and Old Restores\Macbook Air\Last Backblaze backup of old Macbook Air\MacintoshHD\Users\andybaker\Documents\Unity Projects"
l = [os.path.join(d, s, "Library") for s in os.listdir(d)]
[shutil.rmtree(x) for x in l if os.path.isdir(x)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment