diff --git a/src/utils/agents/actor.py b/src/utils/agents/actor.py index f3d89ec..bcec820 100644 --- a/src/utils/agents/actor.py +++ b/src/utils/agents/actor.py @@ -13,7 +13,7 @@ import json from threading import Thread import os -import zipfile +import shutil import subprocess from monitor import ProcessCounter from utils.transport import QueueListener, QueueWriter, QueueReader @@ -82,7 +82,9 @@ class Folders(Actor): """ This function consists in deleting files from a given folder """ - pass + shutil.rmtree(item['label']) + os.mkdir(item['label']) + def isvalid(self,item): return os.path.exists(item['label']) def process(self,item):