バグ #305 » gtk_webicon.rb.diff
core/mui/gtk_webicon.rb | ||
---|---|---|
99 | 99 | |
100 | 100 |
# 一ヶ月より古い画像を削除する。 |
101 | 101 |
def self.garbage_collect |
102 |
File.delete(*Dir.glob("#{icon_dir}#{File::Separator}*").select(&method(:is_tooold))) rescue nil end |
|
102 |
File.delete(*Dir.glob(File.expand_path("#{icondir}") + "#{File::SEPARATOR}*").select(&method(:is_tooold))) |
|
103 |
rescue => e |
|
104 |
notice e |
|
105 |
end |
|
103 | 106 | |
104 | 107 |
# 画像が古すぎるならtrueを返す |
105 | 108 |
def self.is_tooold(file) |