Clear tmp folder and good creating time

fix for #10
feature for #8
This commit is contained in:
azlux
2018-06-13 01:16:32 +02:00
parent b1611621dc
commit 995d5f52e4
3 changed files with 46 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import logging
import json
import http.client
import struct
import os
def get_radio_server_description(url):
@ -76,3 +77,40 @@ def get_url(string):
return res.group(1)
else:
return False
def get_size_folder(path):
folder_size = 0
for (path, dirs, files) in os.walk(path):
for file in files:
filename = os.path.join(path, file)
folder_size += os.path.getsize(filename)
return int(folder_size / (1024 * 1024))
def clear_tmp_folder(path, size):
if size == -1:
return
elif size == 0:
for (path, dirs, files) in os.walk(path):
for file in files:
filename = os.path.join(path, file)
os.remove(filename)
else:
if get_size_folder(path=path) > size:
all_files = ""
for (path, dirs, files) in os.walk(path):
all_files = [os.path.join(path, file) for file in files]
all_files.sort(key=lambda x: os.path.getmtime(x))
size_tp = 0
print(all_files)
for idx, file in enumerate(all_files):
size_tp += os.path.getsize(file)
if int(size_tp/(1024*1024)) > size:
logging.info("Cleaning tmp folder")
to_remove = all_files[idx:]
print(to_remove)
for f in to_remove:
logging.debug("Removing " + f)
os.remove(os.path.join(path, f))
return