GPTLens / src /utils.py
Aishwarya Solanki
initial commit
ee7776a
raw
history blame contribute delete
631 Bytes
import os
import shutil
class dotdict(dict):
"""dot.notation access to dictionary attributes"""
__getattr__ = dict.get
__setattr__ = dict.__setitem__
__delattr__ = dict.__delitem__
def clean_folder(folder):
for filename in os.listdir(folder):
file_path = f"{folder}/{filename}"
try:
if os.path.isfile(file_path) or os.path.islink(file_path):
os.unlink(file_path)
elif os.path.isdir(file_path):
shutil.rmtree(file_path)
except Exception as e:
print('Failed to delete %s. Reason: %s' % (file_path, e))