Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。
os.path.getctime()
Python中的方法用于获取系统指定路径的ctime。这里的ctime是指UNIX中指定路径的最后一次元数据更改,而在Windows中是指路径创建时间。此方法返回一个浮点值,该值表示自纪元以来的秒数。如果文件不存在或无法访问,则此方法引发OSError。
注意:纪元代表时间开始的时间点。它取决于平台。对于Unix,纪元是1970年1月1日,00:00:00(UTC)。
用法: os.path.getctime(path)
参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的字符串或字节对象。
返回类型:此方法返回“ float”类的浮点值,该值表示指定路径的ctime(以秒为单位)。
代码1:使用os.path.getctime()方法
# Python program to explain os.path.getctime() method
# importing os and time module
import os
import time
# Path
path = '/home/User/Documents/file.txt'
# Get the ctime of last
# for the specified path
c_time = os.path.getctime(path)
print("ctime since the epoch:", c_time)
# convert the ctime in
# seconds since epoch
# to local time
local_time = time.ctime(c_time)
print("ctime (Local time):", local_time)
输出:
ctime since the epoch: 1558447897.3122742 ctime (Local time): Tue May 21 19:41:37 2019
代码2:使用os.path.getctime()方法时的处理错误
# Python program to explain os.path.getctime() method
# importing os, time and sys module
import os
import sys
import time
# Path
path = '/home/User/Documents/file2.txt'
# Get the ctime
# for the specified path
try:
c_time = os.path.getctime(path)
print("ctime since the epoch:", c_time)
except OSError:
print("Path '%s' does not exists or is inaccessible" %path)
sys.exit()
# convert ctime in
# seconds since epoch
# to local time
local_time = time.ctime(c_time)
print("ctime(Local time):", local_time)
# above code will print
# path does not exists or is inaccessible'
# if the specified path does not
# exists or is inaccessible
输出:
Path '/home/User/Documents/file2.txt' does not exists or is inaccessible
参考: https://docs.python.org/3/library/os.path.html
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python object()用法及代码示例
- Python bytes()用法及代码示例
- Python os.times()用法及代码示例
- Python os.chmod用法及代码示例
- Python hash()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python dict pop()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.getctime() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。