File size: 258 Bytes
73c83cf
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import platform, os

def open_folder():
    open_folder_path = os.path.abspath("outputs")
    if platform.system() == "Windows":
        os.startfile(open_folder_path)
    elif platform.system() == "Linux":
        os.system(f'xdg-open "{open_folder_path}"')