steve 8 лет назад
Родитель
Сommit
f1b3e8abf2
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      src/utils/agents/actor.py

+ 4 - 2
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):