Hello, my name is Ryan, and I am the production manager for a publishing company that produces two 100 page + magazines, with print runs of around 200,000. We have an absolute nightmare of a server, and it contains something like 150,000 media files that are shoddily organized by hand, and rife with duplicates. When we package the magazines to send to our print techs, it creates a ton of duplicate files, and I need a way to get rid of them and organize the server.
So… I was hoping that if I wrote some psuedo-code you guys could tell me if it was possible to really do, so here goes:
---------------- Image Organization -------------------
in volume(server1) scan all files
if document type = image(.tiff, .jpg, .psd, etc…)
then create folders (#,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z) in (/server/images)
if document name starts with ‘a’ then place in (/server/images/a)
repeat for A-Z
if duplicate file = true then place in (/server/images/duplicatestoreview)
Is this possible? Is it a really bad idea? Will it choke on 150,000 images?
Thanks!
-Ryan