Spaces:
Runtime error
Runtime error
File size: 346 Bytes
aabd771 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import os
import uuid
import datetime
def create_directory(directory_path: str) -> None:
if not os.path.exists(directory_path):
os.makedirs(directory_path)
def generate_unique_name():
current_datetime = datetime.datetime.now().strftime("%Y%m%d%H%M%S")
unique_id = uuid.uuid4()
return f"{current_datetime}_{unique_id}"
|