os.path 模块
Posted treedream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了os.path 模块相关的知识,希望对你有一定的参考价值。
import os import 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
以上是关于os.path 模块的主要内容,如果未能解决你的问题,请参考以下文章
如何用Python os.path.walk方法遍历搜索文件内容的操作详解