原创文章,转载请注明出处
1、我们随便找个文件,获取它的系统路径,比如:
debugtalk.py路径:/Users/wechat-applet-script/wechatInterfaceTestCases/testCase/debugtalk.py
a、相对路径
path = os.path.dirname("debugtalk.py")
b、绝对路径
path = os.path.abspath("debugtalk.py")
c、获取当前文件下的父目录-相对路径
path = os.path.dirname(os.path.dirname(__file__))
# 打印结果:/Users/wechat-applet-script/wechatInterfaceTestCases
d、获取当前文件所在的目录-相对路径
# 方法一:
path = os.path.dirname(os.path.abspath("debugtalk.py"))
# 方法二:
path = os.path.dirname(__file__)
# 打印结果:/Users/wechat-applet-script/wechatInterfaceTestCases/testCase