如何理解python的os.path.join()?

时间:2018-06-28 23:54:24

标签: python

我有以下代码:

source_dir = "/tmp/tmp6q51y7qb"
source_name = "/home/me/test/kernels/devito-cqyn0kni/28851c9f7354c86210d6e2e4fcb3adeae4be2b8f.c"

from os.path import join
source_file = join(source_dir, source_name)
print(source_file)

我希望source_filesource_dirsource_name的串联,但是它只返回source_name

我尝试在此处阅读文档:https://docs.python.org/3/library/os.path.html 但是我没有成功理解它。

有人可以给我举个例子吗?

0 个答案:

没有答案