tryを修正

This commit is contained in:
suti7yk5032 2024-07-07 15:52:46 +09:00
parent 73502817e0
commit bf418936d4

View file

@ -12,13 +12,10 @@ class DL():
self.config_dir_path = "./config/"
self.export_dir_path = "./export/"
self.server_config_path = self.config_dir_path + "server.json"
try:
if not os.path.isdir(self.config_dir_path):
print("config ディレクトリが見つかりません... 作成します。")
try:
os.mkdir(self.config_dir_path)
except:
print("config ディレクトリを作成できませんでした。")
if not os.path.isfile(self.server_config_path):
print("config ファイルが見つかりません... 作成します。")
@ -37,11 +34,9 @@ class DL():
}
}
try:
with open(self.server_config_path, "w") as w:
json.dump(self.server_config, w, indent=4)
except:
print("config ファイルを作成できませんでした。")
elif os.path.isfile(self.server_config_path):
with open(self.server_config_path, "r") as r:
@ -49,15 +44,13 @@ class DL():
if not os.path.isdir(self.export_dir_path):
print("export ディレクトリが見つかりません... 作成します。")
try:
os.mkdir(self.export_dir_path)
except:
print("export ディレクトリを作成できませんでした。")
try:
self.db = psycopg2.connect(f"host={self.server_config['db']['host']} dbname={self.server_config['db']['db_name']} port={self.server_config['db']['port']} user={self.server_config['db']['username']} password={self.server_config['db']['password']}")
result = {"result": "ok"}
except (Exception) as error:
print("データベースに接続できません\nエラー内容\n" + error)
print("初回処理でエラーが発生しました\nエラー内容\n" + error)
result = {"result": "error"}
finally: