Files
OnlineJudge/utils/tasks.py
2018-04-18 00:08:18 +08:00

12 lines
187 B
Python

import os
from celery import shared_task
@shared_task
def delete_files(*args):
for item in args:
try:
os.remove(item)
except Exception:
pass