python中的os.path.realpath(__file__),取的是脚本的完整路径
[root@leexl ~]# cat tst.py
import osRoot = (os.path.realpath(__file__))print Root [root@leexl ~]# python tst.py/root/tst.py本文共 245 字,大约阅读时间需要 1 分钟。
python中的os.path.realpath(__file__),取的是脚本的完整路径
[root@leexl ~]# cat tst.py
import osRoot = (os.path.realpath(__file__))print Root [root@leexl ~]# python tst.py/root/tst.py转载于:https://www.cnblogs.com/seasonsstory/archive/2013/06/05/3118429.html