I'm working on cleaning up an old Rails 2.3.5 app that uses Dragonfly to store its images.

I have a feeling there are far more images in the filestore than records in the database, but due to Dragonfly's less than transparent naming scheme I have no idea how to find out which files in the filestore belong to actual records.

Anyone have a good idea how I can clean this up? I'd love to get rid of several gigabytes of unused data.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You could look up the media records in your database where you should find a column postfixed with "_uid". This column contains the relative path to your media files in your media folder. You could then remove the files that cannot be found in your database. Be careful: as I can see there is one additional file postfixed ".extra" per media file that you should keep (but I don't know what it is for).

I am thinking about implementing such a functionality with a "Cleanup media data store" Button in my admin interface. I didn't try this out yet, though.

link|improve this answer
That's definitely a start.. I saw the paths and things but was hesitant to start deleting things I didn't see in the database just because the storage method was magic to me. Thanks for this, I think I should just start experimenting in this direction. – PeterD Dec 14 '10 at 22:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.