소스 검색

新增记录上次打开文件位置

张世豪 1 개월 전
부모
커밋
30634c4b91
2개의 변경된 파일11개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 0
      config/fileurl.txt
  2. 11 3
      rongzhong.py

+ 0 - 0
config/fileurl.txt


+ 11 - 3
rongzhong.py

@@ -701,12 +701,20 @@ def open_file():
         ('excel files', '*.xlsx'),
         ('All files', '*.xlsx*')
     )
-
+    # 指定文件路径
+    file_path = 'config/fileurl.txt'  # 修改为你的文件路径
+    # 读取整个文件内容
+    with open(file_path, 'r', encoding='utf-8') as file:
+        content = file.read()
     filename = filedialog.askopenfilename(
         title='选择文件',
-        initialdir='/',
+        initialdir=content,  # D:/实验室/16、三普
         filetypes=filetypes)
-
+    # 提取目录部分
+    directory_path = os.path.dirname(filename)
+    # 打开文件并写入内容
+    with open(file_path, 'w', encoding='utf-8') as file:
+        file.write(directory_path)
     # 这里增加判断 若文件为空提示错误
     simpleData = pd.read_excel(filename)
     if not simpleData.empty: