-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.py
30 lines (26 loc) · 1.19 KB
/
deploy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os
import zipfile
PLUGIN_FOLDER_NAME = "enviro_lod_tools"
def zip_directory(directory):
"""
Zips all files in a directory, excluding __pycache__.
:param directory: The directory to zip.
:type directory: str
"""
zip_filename = f"{directory}.zip"
with zipfile.ZipFile(zip_filename, 'w', zipfile.ZIP_DEFLATED) as zipf:
for root, dirs, files in os.walk(directory):
dirs[:] = [d for d in dirs if d != '__pycache__'] # Exclude __pycache__ directory
for file in files:
file_path = os.path.join(root, file)
zipf.write(file_path, os.path.relpath(file_path, start=os.path.join(directory, '..')))
if __name__ == "__main__":
user_defined_folder = input("Enter the folder name within the current directory: ")
if not user_defined_folder:
# Get the first subdirectory in the current directory that is not a hidden directory
user_defined_folder = PLUGIN_FOLDER_NAME
if os.path.isdir(user_defined_folder):
zip_directory(user_defined_folder)
print(f"Processed and zipped the directory {user_defined_folder} successfully.")
else:
print("The specified directory does not exist.")