當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.path.getatime()用法及代碼示例


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。 os.path模塊是Python中OS模塊的子模塊,用於通用路徑名操作。

os.path.getatime()Python中的方法用於獲取對指定路徑的最後訪問時間。此方法返回一個浮點值,該值表示自紀元以來的秒數。如果文件不存在或無法訪問,則此方法引發OSError。

注意:紀元代表時間開始的時間點。它取決於平台。對於Unix,紀元是1970年1月1日,00:00:00(UTC)。


用法: os.path.getatime(path)

參數:
path:代表文件係統路徑的path-like對象。 path-like對象是表示路徑的字符串或字節對象。

返回類型:此方法返回“ float”類的浮點值,該值表示最後一次訪問指定路徑的時間(以秒為單位)。

代碼1:使用os.path.getatime()方法

# Python program to explain os.path.getatime() method  
    
# importing os and time module  
import os 
import time 
  
# Path 
path = '/home/User/Documents/file.txt'
  
# Get the time of last 
# access of the specified 
# path since the epoch 
access_time = os.path.getatime(path) 
print("Last access time since the epoch:", access_time) 
  
# convert the time in 
# seconds since epoch 
# to local time 
local_time = time.ctime(access_time) 
print("Last access time(Local time):", local_time)
輸出:
Last access time since the epoch: 1558447897.0442736
Last access time (Local time): Tue May 21 19:41:37 2019

代碼2:使用os.path.getatime()方法時的處理錯誤

# Python program to explain os.path.getatime() method  
    
# importing os, time and sys module  
import os 
import sys 
import time 
  
# Path 
path = '/home/User/Documents/file2.txt'
  
# Get the time of last 
# access of the specified 
# path since the epoch 
try: 
    access_time = os.path.getatime(path) 
    print("Last access time since the epoch:", access_time) 
  
except OSError: 
    print("Path '%s' does not exists or is inaccessible" %path) 
    sys.exit() 
  
# convert the time in 
# seconds since epoch 
# to local time 
local_time = time.ctime(access_time) 
print("Last access time(Local time):", local_time) 
  
  
# above code will print 
# 'File 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



相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.path.getatime() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。