博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python path
阅读量:5364 次
发布时间:2019-06-15

本文共 576 字,大约阅读时间需要 1 分钟。

import osprint os.path.relpath('/home/work/compasses_liantiao/auto-opt/framework')print os.path.abspath('../../')print os.path.exists("/home/work")print os.path.exists("./test_path.py")print os.path.isfile("/home/work")print os.path.isfile('./test_path.py')print os.path.isdir("/home/work")print os.path.isdir("./test_path.py")print os.path.dirname("./test_path.py")print os.path.basename("./test_path.py")

relpath:  获取相对路径

abspath: 获取绝对路径

exists: 判断路径是否存在

isfile: 判断是否为文件

isdir: 判断是否为目录

dirname: 取路径所在目录

basename: 取路径中的文件名

转载于:https://www.cnblogs.com/taiyang-li/p/7223082.html

你可能感兴趣的文章
[工具] Sublime Text 使用指南
查看>>
Web服务器的原理
查看>>
#10015 灯泡(无向图连通性+二分)
查看>>
HAL层三类函数及其作用
查看>>
web@h,c小总结
查看>>
Data Structure 基本概念
查看>>
NEYC 2017 游记
查看>>
[搬运] 写给 C# 开发人员的函数式编程
查看>>
Python之旅Day14 JQuery部分
查看>>
core--线程池
查看>>
他山之石:加载图片的一个小问题
查看>>
shell - 常识
查看>>
Spring Cloud Stream消费失败后的处理策略(三):使用DLQ队列(RabbitMQ)
查看>>
PKUWC2018 5/6
查看>>
As-If-Serial 理解
查看>>
洛谷P1005 矩阵取数游戏
查看>>
在Silverlight中使用HierarchicalDataTemplate为TreeView实现递归树状结构
查看>>
无线通信基础(一):无线网络演进
查看>>
关于python中带下划线的变量和函数 的意义
查看>>
linux清空日志文件内容 (转)
查看>>