AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Cleanup unused FAVICONS of Opera

 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
mbirth



Joined: 03 Oct 2005
Posts: 40
Location: DE, Berlin

PostPosted: Sun Feb 03, 2008 12:11 pm    Post subject: Cleanup unused FAVICONS of Opera Reply with quote

This script scans the "images"-directory of your Opera profile for unused favicons, i.e. files which were not accessed in more than 7 days. These are deleted and will be reloaded by Opera on next use.

I added this script to the shutdown-policy so that it is executed on every shutdown of my Windows.

Code:
#SingleInstance
#NoTrayIcon
#NoEnv
#ErrorStdOut

OperaDir := A_AppData . "\Opera\Opera9\profile\images"

Progress b2 fm10 fs8, Locating Opera..., Opera FAVICON Cleaner, AHKProgress-CleanOperaIcons
WinSet Transparent, 204, AHKProgress-CleanOperaIcons

Loop %A_AppData%\Opera\profile, 2, 1
{
  OperaDir := A_LoopFileFullPath . "\images"
  break
}

Progress 0, Enumerating FAVICONS...
IconCount := 0
Loop %OperaDir%\*.*
{
  IconCount := A_Index
}

Progress 0, 0 of %IconCount% FAVICONS deleted..., Cleaning old Opera FAVICONS...
Ctr := 0
Loop %OperaDir%\*.*
{
  Now := A_Now
  EnvSub Now, %A_LoopFileTimeAccessed%, days
  If (Now > 7) {
    FileSetAttrib -RSH, %A_LoopFileLongPath%
    FileDelete %A_LoopFileLongPath%
    Ctr++
  }
  Progress % (A_Index*100)/IconCount, %Ctr% of %IconCount% FAVICONS deleted... [%A_Index%]
}

Progress 100, All done.


Cheers,
-mARKUS
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group