From 6a62d23842b64bbc20bda8ddca718c58a0e422cb Mon Sep 17 00:00:00 2001 From: adityacp Date: Mon, 11 Jul 2016 16:47:16 +0530 Subject: deleted copy_delete_files.py --- yaksh/copy_delete_files.py | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 yaksh/copy_delete_files.py (limited to 'yaksh') diff --git a/yaksh/copy_delete_files.py b/yaksh/copy_delete_files.py deleted file mode 100644 index f34b944..0000000 --- a/yaksh/copy_delete_files.py +++ /dev/null @@ -1,29 +0,0 @@ -import shutil -import os -import zipfile - - -class CopyDeleteFiles(object): - - def copy_files(self, file_paths): - files = [] - for src in file_paths: - file_path, extract = src - file_name = os.path.basename(file_path) - files.append(file_name) - shutil.copy(file_path, os.getcwd()) - if extract: - unzip = zipfile.ZipFile(file_name) - for zip_files in unzip.namelist(): - files.append(zip_files) - unzip.extractall() - unzip.close() - return files - - def delete_files(self, files): - for content in files: - if os.path.exists(content): - if os.path.isfile(content): - os.remove(content) - else: - shutil.rmtree(content) -- cgit