python中的os.path.dirname的用法python
语法:os.path.dirname(path)
功能:去掉文件名,返回目录
如:spa
print(os.path.dirname('W:\Python_File\juan之购物车.py')) #结果 #W:\Python_File
print(os.path.dirname('W:\Python_File')) #结果 #W:\
python中的os.path.dirname(__file__)的使用code
(1).当"print os.path.dirname(__file__)"所在脚本是以完整路径被运行的, 那么将输出该脚本所在的完整路径,好比:blog
python d:/pythonSrc/test/test.py字符串
那么将输出 d:/pythonSrc/testclass
(2).当"print os.path.dirname(__file__)"所在脚本是以相对路径被运行的, 那么将输出空目录,好比:test
python test.pyfile
那么将输出空字符串语法