码迷,mamicode.com
首页 > 编程语言 > 详细

python 获取当前执行的命令 处于什么文件内

时间:2017-05-29 22:21:23      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:tor   file   directory   pre   eterm   使用   .com   determine   rip   

https://stackoverflow.com/questions/3718657/how-to-properly-determine-current-script-directory-in-python

比较常用的是下面这句

os.path.dirname(os.path.abspath(__file__))

但是如果使用exec的话,上述办法行不通,得使用下面这种更通用的办法:
filename = inspect.getframeinfo(inspect.currentframe()).filename
path = os.path.dirname(os.path.abspath(filename))

python 获取当前执行的命令 处于什么文件内

标签:tor   file   directory   pre   eterm   使用   .com   determine   rip   

原文地址:http://www.cnblogs.com/xuxm2007/p/6919135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!