Onionr/src/utils/createdirs.py

42 lines
1.3 KiB
Python
Raw Normal View History

2019-08-06 03:10:21 +00:00
'''
Onionr - Private P2P Communication
Create required Onionr directories
'''
'''
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 3 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/>.
'''
2019-07-20 06:02:30 +00:00
import os
2019-07-18 17:40:48 +00:00
from . import identifyhome
2019-09-23 19:48:35 +00:00
import filepaths
2019-07-18 17:40:48 +00:00
home = identifyhome.identify_home()
2019-07-20 06:02:30 +00:00
def create_dirs():
"""Create onionr data-related directories in
order of the hardcoded list below,
2019-09-14 06:29:31 +00:00
then trigger creation of DBs"""
gen_dirs = [home, filepaths.block_data_location,
2020-02-02 09:23:59 +00:00
filepaths.contacts_location, filepaths.export_location]
2019-07-27 02:42:55 +00:00
for path in gen_dirs:
if not os.path.exists(path):
os.mkdir(path)
2019-07-18 17:40:48 +00:00
from onionrsetup import dbcreator
2019-07-20 06:02:30 +00:00
for db in dbcreator.create_funcs:
try:
db()
except FileExistsError:
pass