stat方法:
用于获取文件信息,例如创建时间、文件大小等。
import os
filestate=os.stat("e:/temp/test.txt")
print(filestate.st_mtime)# 文件最后修改的时间距离1970/1/1的秒数。 import time
print(time.localtime(filestate.st_mtime))# 一个元组,含年月日时分秒毫秒。 print(filestate.st_size)# 文件大小,按字节计数。
path.realpath方法:
import os
print(os.getcwd())
print(os.path.realpath('test.txt'))
效果相当于将realpath方法的参数与当前工作目录组合起来。