File Duplication Finder

File Duplication Finder

Scan Results

Click the scan button to find duplicate files based on the configured data.

Configure File Data

Edit the JSON data below to simulate a file system. Duplicates are found based on matching `contentHash`.

No duplicate files were found during this scan.

'; return `

File Duplication Report

Generated on: ${new Date().toLocaleString()}

${resultsHtml}
`; } // Tab functionality window.changeTab = function(event, tabName) { document.querySelectorAll('.tab').forEach(tab => tab.classList.remove('active')); event.currentTarget.classList.add('active'); document.querySelectorAll('.tab-content').forEach(content => content.classList.remove('active')); document.getElementById(tabName).classList.add('active'); } // Initial Load loadData(); });
Scroll to Top