Skip to content

Instantly share code, notes, and snippets.

View philmae's full-sized avatar

philmae

  • The Hague, Netherlands
View GitHub Profile
@philmae
philmae / duplicates.py
Last active November 12, 2022 00:02 — forked from platomav/duplicates.py
Fast duplicate file finder and (optionally) deleter, written in Python 3
#!/usr/bin/env python3
#coding=utf-8
"""
Fast duplicate file finder and deleter.
Usage: duplicates.py {--delete} <folder> [folder2 ...]
Based on https://stackoverflow.com/a/36113168/300783
Modified for Python3 with some small code improvements.
@philmae
philmae / duplicates.py
Last active November 11, 2022 22:40 — forked from ntjess/duplicates.py
Fast duplicate file finder written in python
#!/usr/bin/env python3
"""
Fast duplicate file finder.
Usage: duplicates.py <folder> [<folder>...]
Based on https://stackoverflow.com/a/36113168/300783
Modified for Python3 with some small code improvements.
## Problem Statement