python中os.path.dirname(file)的使用
标签: pythonfile脚本
2010-01-24 20:38 49253人阅读 评论(6) 收藏 举报
版权声明:本文为博主原创文章,未经博主允许不得转载。
(1).当"print os.path.dirname(__file__)"所在脚本是以完整路径被运行的, 那么将输出该脚本所在的完整路径,比如:
[Python](http://lib.csdn.net/base/python) d:/pythonSrc/test/test.py
那么将输出 d:/pythonSrc/test
(2).当"print os.path.dirname(__file__)"所在脚本是以相对路径被运行的, 那么将输出空目录,比如:
[python](http://lib.csdn.net/base/python) test.py
那么将输出空字符串
os.path.dirname(file)返回脚本的路径,但是需要注意一下几点: •必须是实际存在的.py文件,如果在命令行执行,则会引发异常NameError: name 'file' is not defined;
•在运行的时候如果输入完整的执行的路径,则返回.py文件的全路径如:Python c:/test/test.py 则返回路径 c:/test ,如果是python test.py 则返回空;
•结合os.path.abspath用,效果会好,如果大家看过一些python架构的代码的话,会发现经常有这样的组合:os.path.dirname(os.path.abspath(file)),os.path.abspath(file)返回的是.py文件的绝对路径。
这就是os.path.dirname(file)的用法,其主要总结起来有:
•不要在命令行的形式来进行os.path.dirname(file)这种形式来使用这个函数;
•结合os.path.abspath()使用