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