我正在尝试动态获取 Google Colab 内的 Python 文件的路径位置,但我不知道如何实现。我正在尝试获得类似的输出
dir_path = os.path.dirname(os.path.realpath(__file__))
在 Windows 机器上。
我尝试过
os.getcwd
,但这只输出"builtIn_function_or_method"
的字符串。是否可以在 Google Colab 中获取文件的目录?
我正在 Windows 上离线使用 colab。
为了解决这个任务,我使用了:
from pathlib import Path
Win_base_dir = Path("./").resolve()