如何在Python中获取绝对文件路径

给定路径,例如"mydir/myfile.txt",我如何找到相对于Python中当前工作目录的文件的绝对路径?例如在Windows上,我可能会得到以下结果:

"C:/example/cwd/mydir/myfile.txt"

回答:

>>> import os

>>> os.path.abspath("mydir/myfile.txt")

'C:/example/cwd/mydir/myfile.txt'

如果已经是绝对路径,也可以使用:

>>> import os

>>> os.path.abspath("C:/example/cwd/mydir/myfile.txt")

'C:/example/cwd/mydir/myfile.txt'

以上是 如何在Python中获取绝对文件路径 的全部内容, 来源链接: utcz.com/qa/421425.html

回到顶部