• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Looking for spider like utility to help me find unused images

 
Ranch Hand
Posts: 515
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm looking for a tool that will tell me if there are images and/or html pages that are not being used in my site. I have a ton of jpgs, gifs and html pages that might not be used on my site. Has anyone heard of such a tool.
Thanks!
Regards,
Dale
 
Ranch Hand
Posts: 4716
9
Scala Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
im not sure i understand. you have a lot of "extra" files on your host? from updating the site? i have never heard of any program that can do that.
[ July 02, 2002: Message edited by: Randall Twede ]
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I assume that you have a purely static site. If you have dynamically generated pages then the following most probably won't work. Anyway, I guess you could do it in two passes:
1. Run a traditional "clone" or "site syphon" spider over your site, saving each page and image to a duplicate directory structure somewhere. You might even be able to get away with just the functionality built into your browser!
2. Compare the "saved" directory structure with the original. Anything in the original and not in the copy is most likely redundant.
Make sense ?
 
Randall Twede
Ranch Hand
Posts: 4716
9
Scala Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
gee..i hadnt thought of that. there is a free program you can download called site snag(i think thats the name, i forget where to get it) that should do the trick. as frank mentioned that would probably only work for a static site.
[ July 02, 2002: Message edited by: Randall Twede ]
 
Dale DeMott
Ranch Hand
Posts: 515
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually I found something that does do this. Dreamweaver 4.0 does this by checking for obsolete files. Its a bit tough to find but it does do this. BTW, yes this is a static site. Thanks for your input.
reply
    Bookmark Topic Watch Topic
  • New Topic