/
gozaltech
/
RHVoice2
Обзор
Документация
Войти
/
gozaltech
/
RHVoice2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/nvda-addon/installTasks.py
30 строк
1 KB
Beqa Gozalishvili
Refactor nvda driver (#808)
22 янв 2024, 12:52
Не верифицирован
22 янв 2024, 12:52
e7cb9d1
Код
Авторство
О чём код?
# Copyright (C) 2012, 2019 Olga Yakovleva <yakovleva.o.v@gmail.com> # Copyright (C) 2019 Beqa Gozalishvili <beqaprogger@gmail.com> # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. import sys import os.path import shutil import globalVars def onInstall(): module_dir=os.path.dirname(__file__) config_dir=os.path.join(module_dir,"synthDrivers","RHVoice","config") user_config_dir=os.path.join(globalVars.appArgs.configPath,"RHVoice-config") if not os.path.isdir(user_config_dir): shutil.move(config_dir,user_config_dir) else: shutil.rmtree(config_dir, ignore_errors=False, onerror=None)