python中os.path常用模块
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
·
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分为目录和文件两个部分,以列表返回
- [GCC 4.4.5] on linux2
- Type "help","copyright","credits" or"license" for more information.
- >>>import os
- >>> help('os.path.sep')
- >>>print os.path.sep
- /
- >>>print os.path.altsep
- None
- >>>print os.path.curdir
- .
- >>>print os.path.abspath('/root')
- /root
- >>>print os.path.abspath('/root/pp')
- /root/pp
- >>>print os.path.abspath('/root/pp/f.c')
- /root/pp/f.c
- >>>print os.path.split('/root/pp/f.c')
- ('/root/pp','f.c')
- >>>
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 年前
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐



所有评论(0)