1
0
Fork 0
mirror of synced 2024-05-20 04:42:19 +12:00
waifu2x/appendix/cache_cleaner.lua
2015-05-17 03:59:49 +09:00

13 lines
218 B
Lua

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