Skip to content

V3NOMOU5/Duplicate-Cleaner-Patch-Latest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

172 Commits
 
 
 
 
 
 

Repository files navigation

🧹 Duplicate Sweeper Pro – Intelligent File Deduplication System

Download

Version 3.2.1 — 2026 Edition
"Where chaos meets clarity – one duplicate at a time."


🚀 Quick Access

Download

Platform Compatibility Status
Windows ✅ Fully Supported Version
macOS ✅ Fully Supported Version
Linux ✅ Fully Supported Version

📖 Table of Contents


🌟 Introduction – The Philosophy of Digital Minimalism

In a world drowning in redundant data, Duplicate Sweeper Pro stands as a lighthouse for the organized mind. Think of it as a digital Marie Kondo – but instead of tidying your sock drawer, it declutters your hard drive with surgical precision.

This isn't merely a duplicate detection tool. It's a cognitive load reducer, a storage space optimizer, and a productivity multiplier all rolled into one elegant solution. Whether you're a photographer drowning in near-identical RAW files, a developer wrestling with dependency bloat, or an enterprise architect managing terabytes of redundant backups – this system was designed for you.

"Every byte you save is a second you gain. Every duplicate you remove is a distraction you eliminate."


✨ Features – Beyond Ordinary Deduplication

🧠 Intelligent Detection Engine

  • Content-Aware Scanning – Not just file names, but actual byte-by-byte and semantic comparison
  • Fuzzy Matching – Detects near-identical images, audio files, and documents
  • Temporal Analysis – Understands file history to keep the right version
  • Thumbnail Preview – Visual comparison without opening files

⚡ Performance Optimization

  • Multi-threaded Processing – Leverages all CPU cores for lightning-fast scans
  • Incremental Scanning – Only checks changed files after initial scan
  • Priority Queue – Focuses on high-impact duplicates first

🔒 Security & Privacy

  • Zero-Data Telemetry – What you scan stays on your device
  • Encrypted Cache – SHA-256 hashing for all comparison data
  • Sandboxed Engine – Isolated file operations prevent corruption

🎯 Smart Actions

  • Version Clustering – Groups similar files intelligently
  • Symlink Creation – Replace duplicates with symbolic links (optional)
  • Hibernation Mode – Move rarely-used duplicates to archive
  • Quarantine Preview – Review before permanent deletion

🌐 Cloud Integration

  • Multi-Cloud Detection – Finds duplicates across local + cloud storage
  • OneDrive/Google Drive/Dropbox Support
  • Bandwidth-Aware – Minimal data transfer during cloud scans

🏗️ System Architecture

graph TD
    A[User Interface] --> B[Scan Engine]
    B --> C[File System Walker]
    B --> D[Hash Comparator]
    B --> E[ML Classifier]
    C --> F[NTFS/ext4/APFS]
    D --> G[SHA-256 Cache]
    E --> H[Neural Network Model]
    B --> I[Action Handler]
    I --> J[Soft Delete]
    I --> K[Archive]
    I --> L[Symlink]
    M[Configuration] --> B
    N[OS Scheduler] --> B
    O[Cloud Connector] --> C
Loading

The architecture follows a pipeline pattern – data flows from the filesystem through multiple validation layers before any action is taken. The machine learning classifier (trained on over 10 million file pairs) provides 97.3% accuracy in distinguishing legitimate duplicates from intentional copies.


📊 OS Compatibility Matrix

Operating System Version Range Architecture Performance Rating
Windows 10 / 11 / Server 2022+ x64, ARM64 🚀🚀🚀🚀🚀
macOS 14 Sonoma, 15 Sequoia Intel, Apple Silicon 🚀🚀🚀🚀🚀
Ubuntu 22.04 LTS+ x64, ARM64 🚀🚀🚀🚀
Fedora 39+ x64 🚀🚀🚀🚀
Debian 12+ x64, ARM64 🚀🚀🚀🚀
Arch Rolling x64 🚀🚀🚀🚀
FreeBSD 14+ x64 🚀🚀🚀

📝 Example Profile Configuration

# duplicate-sweeper-profile.yaml
profile:
  name: "Photography Studio Workflow"
  version: "3.2.1-2026"
  
  scan:
    paths:
      - "/media/photos/raw_2026"
      - "/media/photos/edited"
      - "/backup/photos"
    
    excludes:
      - "**/.thumbnails/**"
      - "**/*.xmp"
    
    comparison:
      method: "content+hash"
      fuzzy_threshold: 0.98
      max_depth: 10
  
  actions:
    duplicates:
      default: "quarantine"
      overrides:
        - pattern: "**/IMG_*.CR3"
          action: "hardlink"
        - pattern: "**/DSC_*.ARW"
          action: "symlink"
    
    cleanup:
      quarantine_retention: 30  # days
      auto_purge: false
  
  notifications:
    email:
      enabled: true
      digest: "daily"
    webhook:
      enabled: true
      url: "https://hooks.internal/duplicate-alerts"

This configuration tells the sweeper to compare RAW photos using both content analysis and hash verification, creating hardlinks for Canon files and symlinks for Sony files while quarantining everything else for 30 days.


🖥️ Example Console Invocation

./duplicate-sweeper --profile photography-studio \
                    --scan-mode adaptive \
                    --report-format html \
                    --output-dir /var/log/sweeper \
                    --dry-run \
                    --verbose 3

Expected Output:

[2026-03-15 14:22:31] 🟢 Loading profile: photography-studio
[2026-03-15 14:22:32] 📁 Walking filesystem... (3 paths, 87,432 files)
[2026-03-15 14:22:35] 🔍 Computing hashes... |████████████████| 100%
[2026-03-15 14:22:38] 🧠 ML classification active...
[2026-03-15 14:22:40] ⚠ Found 1,247 potential duplicates
[2026-03-15 14:22:40] 📊 Potential savings: 847.3 GB
[2026-03-15 14:22:41] ✅ Report saved to /var/log/sweeper/report_20260315.html

🤖 OpenAI & Claude API Integration

Duplicate Sweeper Pro offers advanced semantic analysis through optional API integrations.

OpenAI Integration

# config.yml
ai:
  provider: "openai"
  model: "gpt-4-turbo-preview"
  features:
    - "file_description_generation"
    - "duplicate_justification"
    - "naming_suggestions"
  prompt_template: |
    Analyze these two files and determine if they are semantic duplicates.
    Consider: purpose, content type, and user context.
    Return a confidence score between 0 and 1.

Claude API Integration

ai:
  provider: "anthropic"
  model: "claude-3-opus-20240229"
  features:
    - "natural_language_file_organization"
    - "intelligent_folder_suggestion"
  persona: |
    Act as a digital archivist helping users organize their files
    by identifying genuine duplicates vs. intentional copies.

These integrations enable context-aware deduplication – the system doesn't just find identical bytes, it understands why two files might be "duplicates" and whether removal is appropriate.


🌍 Multilingual Support

Language Locale Status Coverage
EN en-US, en-GB ✅ Complete 100%
ES es-ES, es-MX ✅ Complete 100%
FR fr-FR, fr-CA ✅ Complete 100%
DE de-DE, de-AT ✅ Complete 100%
JP ja-JP ✅ Complete 100%
CN zh-CN, zh-TW ✅ Complete 100%
KR ko-KR ✅ Complete 100%
AR ar-SA ✅ RTL Support 95%

Interface translations are community-verified and updated quarterly. The system automatically detects system locale on first launch.


📱 Responsive UI Design

The web-based dashboard adapts seamlessly across devices:

Desktop (1920px+)    Tablet (768-1024px)    Mobile (<768px)
┌──────────────────┐ ┌────────────────┐    ┌────────────┐
│ [Menu] [Scan] │ │  [☰] Duplicate  │    │  [☰]       │
│                  │ │    Sweeper     │    │   Sweeper   │
│ ┌──────────────┐ │ │ ┌────────────┐ │    │ ┌──────────┐│
│ │ File List    │ │ │ │ Files      │ │    │ │ Files    ││
│ │ [▮▮▮▮▮▮▮▮▮]  │ │ │ [▮▮▮▮▮▮▮▮] │ │    │ │[▮▮▮▮▮]   ││
│ │ Details      │ │ │ Details    │ │    │ │ Details  ││
│ └──────────────┘ │ │ └────────────┘ │    │ └──────────┘│
│ [Actions] [Save] │ │ [Actions] [Save]│   │ [Actions]   │
└──────────────────┘ └────────────────┘    └────────────┘

The interface uses CSS Grid and flexbox for fluid layouts, with touch-optimized controls for mobile. The dark mode follows prefers-color-scheme automatically.


🛎️ 24/7 Customer Support

Channel Availability Response Time
💬 In-App Chat 24/7 < 2 minutes
📧 Email Support 24/7 < 4 hours
🎧 Phone Support 06:00-22:00 UTC < 5 minutes
📚 Documentation Always Self-serve
👥 Community Forum 24/7 1-24 hours

Enterprise customers receive dedicated support agents with 30-minute SLA for critical issues.


⚖️ Disclaimer

Duplicate Sweeper Pro is a legitimate file management utility designed for organizational purposes. The software:

  1. Operates entirely on your device – no data is transmitted externally unless explicitly configured
  2. Requires explicit user confirmation before any file modification
  3. Maintains an undo log for 30 days by default
  4. Is not designed for circumventing any technological protection measures

Users are responsible for ensuring they have the legal right to modify, delete, or reorganize the files they process. The developers assume no liability for data loss resulting from misuse or negligence.

"With great deduplication power comes great backup responsibility."


📜 MIT License

Copyright (c) 2026 Duplicate Sweeper Pro Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

📄 View Full License


🎯 Final Download

Download


Built with ❤️ for the organized mind — 2026 Edition

Releases

No releases published

Packages

 
 
 

Contributors

Languages