如何使用 Python 动态获取 Google Colab 中的文件路径?

问题描述 投票:0回答:1

我正在尝试动态获取 Google Colab 内的 Python 文件的路径位置,但我不知道如何实现。我正在尝试获得类似的输出

dir_path = os.path.dirname(os.path.realpath(__file__))
在 Windows 机器上。

我尝试过

os.getcwd
,但这只输出
"builtIn_function_or_method"
的字符串。是否可以在 Google Colab 中获取文件的目录?

python google-colaboratory
1个回答
0
投票

我正在 Windows 上离线使用 colab。

为了解决这个任务,我使用了:

from pathlib import Path
Win_base_dir = Path("./").resolve()
© www.soinside.com 2019 - 2024. All rights reserved.