您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
279B

  1. import os
  2. def get_base_path():
  3. marker_file = "run.py"
  4. current_path = os.getcwd()
  5. while current_path != 0:
  6. if marker_file in os.listdir(current_path):
  7. return current_path
  8. current_path = os.path.dirname(os.path.normpath(current_path))