Python中os.path用法分析


Posted in Python onJanuary 15, 2015

本文实例分析了Python中os.path用法。分享给大家供大家参考。具体如下:

#coding=utf-8

import os

print os.path.abspath("d:\\new\\test.txt")

print os.path.basename("d:\\new\\test.txt")

print os.path.dirname("d:\\new\\test.txt")

print os.path.exists("d:\\new")

print os.path.lexists("d:\\new")

print os.path.expanduser("d:\\new\\text.txt")

print os.path.getatime("d:\\new")  #最后访问时间

print os.path.getmtime("d:\\new") #最后修改路径时间

print os.path.getctime("d:\\new")  #创建时间

print os.path.getsize("d:\\new\\")  #或许路径的大小 字节为单位

print os.path.isabs("d:\\")  #是否是绝对路径

print os.path.isfile("d:\\new\\hello.txt")

print os.path.isdir("d:\\new")

print os.path.islink("d:\\new\\hello.txt")

print os.path.join("d:\\new","hello.txt")

print os.path.normcase("d:\\new\\hello.txt")

print os.path.relpath("d:\\new\\hello.txt")  #相对路径

print os.path.split("d:\\new\\hello.txt")  #分离文件名

print os.path.splitdrive("d:\\new\\hello.txt")  #分离磁盘驱动器

print os.path.splitext("d:\\new\\hello.txt")  #分离扩展名

运行结果:
>>>
d:\new\test.txt
test.txt
d:\new
True
True
d:\new\text.txt
1322235096.47
1322235096.47
1321610018.9
16384
True
True
True
False
d:\new\hello.txt
d:\new\hello.txt
hello.txt
('d:\\new', 'hello.txt')
('d:', '\\new\\hello.txt')
('d:\\new\\hello', '.txt')
>>>

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python之PyUnit单元测试实例
Oct 11 Python
Python中利用sorted()函数排序的简单教程
Apr 27 Python
利用Python获取操作系统信息实例
Sep 02 Python
Python实现获取磁盘剩余空间的2种方法
Jun 07 Python
Python内存管理方式和垃圾回收算法解析
Nov 11 Python
新手常见6种的python报错及解决方法
Mar 09 Python
Python OpenCV对本地视频文件进行分帧保存的实例
Jan 08 Python
JupyterNotebook 输出窗口的显示效果调整方法
Apr 13 Python
Python OrderedDict字典排序方法详解
May 21 Python
基于python 将列表作为参数传入函数时的测试与理解
Jun 05 Python
Python类super()及私有属性原理解析
Jun 15 Python
解决pycharm导入numpy包的和使用时报错:RuntimeError: The current Numpy installation (‘D:\\python3.6\\lib\\site-packa的问题
Dec 08 Python
python静态方法实例
Jan 14 #Python
python继承和抽象类的实现方法
Jan 14 #Python
python列表操作实例
Jan 14 #Python
python操作gmail实例
Jan 14 #Python
Python中的装饰器用法详解
Jan 14 #Python
python登陆asp网站页面的实现代码
Jan 14 #Python
Python的面向对象思想分析
Jan 14 #Python
You might like
PHP中运用jQuery的Ajax跨域调用实现代码
2012/02/21 PHP
鸡肋的PHP单例模式应用详解
2013/06/03 PHP
为你总结一些php系统类函数
2015/10/21 PHP
PHP中功能强大却很少使用的函数实例小结
2016/11/10 PHP
PHP 7.1新特性的汇总介绍
2016/12/16 PHP
关于laravel模板中生成URL的几种模式总结
2019/10/18 PHP
Laravel相关的一些故障解决
2020/08/19 PHP
js加解密 脚本解密
2008/02/22 Javascript
JS小功能(button选择颜色)简单实例
2013/11/29 Javascript
JQuery中dataGrid设置行的高度示例代码
2014/01/03 Javascript
浅谈JavaScript中的string拥有方法的原因
2015/08/28 Javascript
你有必要知道的25个JavaScript面试题
2015/12/29 Javascript
jQuery插件FusionWidgets实现的Cylinder图效果示例【附demo源码】
2017/03/23 jQuery
原生JS实现层叠轮播图
2017/05/17 Javascript
vue2.0 与 bootstrap datetimepicker的结合使用实例
2017/05/22 Javascript
JavaScript你不知道的一些数组方法
2017/08/18 Javascript
使用nvm管理不同版本的node与npm的方法
2017/10/31 Javascript
js 客户端打印html 并且去掉页眉、页脚的实例
2017/11/03 Javascript
详解Vue-axios 设置请求头问题
2018/12/06 Javascript
微信小程序整个页面的自动适应布局的实现
2020/07/12 Javascript
Vue使用screenfull实现全屏效果
2020/09/17 Javascript
python实现遍历文件夹修改文件后缀
2018/08/28 Python
Python为何不能用可变对象作为默认参数的值
2019/07/01 Python
numpy的Fancy Indexing和array比较详解
2020/06/11 Python
CSS3之边框多颜色Border-color属性使用示例
2013/10/11 HTML / CSS
使用css3实现的tab选项卡代码分享
2014/12/09 HTML / CSS
canvas生成带二维码海报的踩坑记录
2019/09/11 HTML / CSS
英国最大的在线时尚眼镜店:Eyewearbrands
2019/03/12 全球购物
Javascript如何发送一个Ajax请求
2015/01/26 面试题
工程管理专业个人求职信范文
2013/12/07 职场文书
岗位竞聘演讲稿
2014/01/10 职场文书
大学毕业感言50字
2014/02/07 职场文书
基层党支部公开承诺书
2014/05/29 职场文书
警察正风肃纪剖析材料
2014/10/16 职场文书
民事代理词范文
2015/05/25 职场文书
2019年教师节:送给所有老师的祝福语
2019/09/05 职场文书