選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- import os
-
-
- def get_base_path():
- marker_file = "run.py"
-
- current_path = os.getcwd()
-
- while current_path != 0:
- if marker_file in os.listdir(current_path):
- return current_path
-
- current_path = os.path.dirname(os.path.normpath(current_path))
|