python中os.path常用模块

os.path.sep:路径分隔符 linux下就用这个了’/’
os.path.altsep: 根目录
os.path.curdir:当前目录
os.path.pardir:父目录
os.path.abspath(path):绝对路径
os.path.join(): 常用来链接路径
os.path.split(path): 把path分为目录和文件两个部分,以列表返回

 

  1. [GCC 4.4.5] on linux2
  2. Type "help","copyright","credits" or"license" for more information.
  3. >>>import os
  4. >>> help('os.path.sep')

  5. >>>print os.path.sep
  6. /
  7. >>>print os.path.altsep
  8. None
  9. >>>print os.path.curdir
  10. .
  11. >>>print os.path.abspath('/root')
  12. /root
  13. >>>print os.path.abspath('/root/pp')
  14. /root/pp
  15. >>>print os.path.abspath('/root/pp/f.c')
  16. /root/pp/f.c
  17. >>>print os.path.split('/root/pp/f.c')
  18. ('/root/pp','f.c')
  19. >>>
GitHub 加速计划 / li / linux-dash
13
2
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e added ecosystem file for PM2 5 年前
5def40a3 Add host customization support for the NodeJS version 5 年前
Logo

AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。

更多推荐