1
0
Fork 0
mirror of synced 2024-06-28 11:10:25 +12:00
waifu2x/appendix/purge_cache.lua

13 lines
218 B
Lua
Raw Normal View History

2015-05-17 06:59:49 +12:00
require 'pl'
CACHE_DIR="cache"
TTL = 3600 * 24
local files = dir.getfiles(CACHE_DIR, "*.png")
local now = os.time()
for i, f in pairs(files) do
if now - path.getmtime(f) > TTL then
file.delete(f)
end
end