博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
os.path 模块
阅读量:6581 次
发布时间:2019-06-24

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

import osimport time# os.path 获取文件属性# file = 'ped.png'# print(os.path.abspath(file))### print(os.path.getctime(file))      # os.path.getctime() 获取文件创建时间# print(os.path.getatime(file))      # os.path.getatime() 文件最近访问时间# print(os.path.getmtime(file))      # os.path.getmtime() 文件最近修改时间## print(time.gmtime(os.path.getmtime(file)))# print(os.path.getsize(file))# print(os.path.normpath(file))file = 'C:/learn/note.txt'print(os.path.basename(file))print(os.path.dirname(file))print(os.path.split(file))print(os.path.join('root','test','a.txt'))

os.path 模块的程序可以是遍地可见了。

参考:http://www.runoob.com/python3/python3-os-path.html

转载于:https://www.cnblogs.com/TreeDream/p/10114031.html

你可能感兴趣的文章
汽车常识全面介绍 - 刹车系统
查看>>
Perl 教学 Perl5的包和模块
查看>>
售前工程师的成长---一个老员工的经验之谈(三)(转载)
查看>>
网桥 交换机 VLAN 等基本概念---以太网
查看>>
STL - 容器 - Map(一)
查看>>
auguements实参对象的数组化
查看>>
ecshop二次开发常用文件位置
查看>>
Java学习(三)面向对象多线程
查看>>
javascript二维数组排序
查看>>
测试常用的Linux命令总结
查看>>
vue.js个人学习心得
查看>>
CocoaPods的使用
查看>>
POJ2739:Sum of Consecutive Prime Numbers(简单数论)
查看>>
c#和.net区别
查看>>
java的环境变量classpath中加点号 ‘.’ 的作用
查看>>
采用CAN芯片实现和FPGA通信
查看>>
动态规划算法3
查看>>
框架搭建
查看>>
关于增强for循环
查看>>
冒泡排序法
查看>>