music-dl/src/storage.py
Andre Polykanine 593ae5c925 Added paths resolver to the repository
Modified requirements file
2018-07-15 17:18:44 +03:00

18 lines
531 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals # at top of module
import paths
import os
import glob
data_directory = None
def setup():
global data_directory
if len(glob.glob("Uninstall.exe")) > 0: # installed copy
if os.path.exists(paths.app_data_path("musicDL")) == False:
paths.prepare_app_data_path("musicDL")
data_directory = paths.app_data_path("musicDL")
else:
data_directory = os.path.join(paths.app_path(), "data")
if os.path.exists(data_directory) == False:
os.mkdir(data_directory)