From d24917a7422efa5aa1d3cff2ef70ad754cebaedf Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期四, 19 六月 2025 11:31:00 +0800
Subject: [PATCH] 1.生成玻璃的JobDataS数据,采用新的JobNo等id

---
 SourceCode/Bond/Servo/UserManager.cpp |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/SourceCode/Bond/Servo/UserManager.cpp b/SourceCode/Bond/Servo/UserManager.cpp
index db9f1e5..cceff0c 100644
--- a/SourceCode/Bond/Servo/UserManager.cpp
+++ b/SourceCode/Bond/Servo/UserManager.cpp
@@ -157,18 +157,18 @@
 
 // 获取程序路径下的config文件夹路径
 std::string UserManager::getConfigFolderPath() {
-    char path[MAX_PATH];
-    GetModuleFileName(NULL, path, MAX_PATH);
-    std::string exePath = std::string(path).substr(0, std::string(path).find_last_of("\\/"));
-    std::string configPath = exePath + "\\Config\\";
+    char szPath[MAX_PATH];
+    GetModuleFileName(NULL, szPath, MAX_PATH);
+    std::string exePath(szPath);
+    std::string dbDir = exePath.substr(0, exePath.find_last_of("\\/")) + "\\DB";
 
     // 检查并创建config文件夹
-    DWORD fileAttr = GetFileAttributes(configPath.c_str());
+    DWORD fileAttr = GetFileAttributes(dbDir.c_str());
     if (fileAttr == INVALID_FILE_ATTRIBUTES) {
-        CreateDirectory(configPath.c_str(), NULL);
+        CreateDirectory(dbDir.c_str(), NULL);
     }
 
-    return configPath;
+    return dbDir;
 }
 
 // 获取session.dat文件路径

--
Gitblit v1.9.3