inkstitch/lib/utils/paths.py

11 wiersze
296 B
Python
Czysty Zwykły widok Historia

2018-07-05 01:16:49 +00:00
import sys
import os
from os.path import dirname, realpath
def get_bundled_dir(name):
if getattr(sys, 'frozen', None) is not None:
return realpath(os.path.join(sys._MEIPASS, "..", name))
else:
return realpath(os.path.join(dirname(realpath(__file__)), '..', '..', name))