Duplicate Files

Can Engine Prime search & remove duplicate music files??

Thanks

No

There is no such function

1 Like

This is an option that im really missing in the Desktop App.

1 Like

Here is one way to solve this, assuming you are technically inclined: Open up m.db from your source drive with a SQL editor/browser and execute the query: SELECT filename, COUNT(*) c FROM Track GROUP BY filename HAVING c > 1; This will give you a list of files that have the exact name. You can search for those in EngineDJ as such:

I’ve been using DB Browser for SQLite for a number of years, just be sure not to change anything you don’t mean to: https://sqlitebrowser.org/

I laughed out loud as this sounds purely like an error a programmer would write :rofl: