jhj0517
Add utils
526c234
raw
history blame
200 Bytes
import os
def open_folder(folder_path: str):
if os.path.exists(folder_path):
os.system(f'start "" "{folder_path}"')
else:
print(f"The folder '{folder_path}' does not exist.")