3 回答
TA贡献1816条经验 获得超4个赞
import os dir_path = os.path.dirname(os.path.realpath(__file__))
os.chdir()
__file__
os.chdir()
import os cwd = os.getcwd()
这个 和 模块。 这个 常量 (返回) “指定文件名的规范路径,消除在路径中遇到的任何符号链接”)
(返回) “路径名的目录名 path
")(返回) “表示当前工作目录的字符串”)
os.chdir(path)
(“将当前工作目录更改为 path
")
TA贡献1942条经验 获得超3个赞
您可能会发现这是一个有用的参考:
import os
print("Path at terminal when executing this file")
print(os.getcwd() + "\n")
print("This file path, relative to os.getcwd()")
print(__file__ + "\n")
print("This file full path (following symlinks)")
full_path = os.path.realpath(__file__)
print(full_path + "\n")
print("This file directory and name")
path, filename = os.path.split(full_path)
print(path + ' --> ' + filename + "\n")
print("This file directory only")
print(os.path.dirname(full_path))
添加回答
举报