python 獲取檔案大小,建立時間和訪問時間

2021-08-16 19:11:13 字數 1096 閱讀 9059

python 獲取檔案大小,建立時間和訪問時間

# -*- coding: utf8 -*-

import time

import datetime

import os

deftimestamptotime

(timestamp):

timestruct = time.localtime(timestamp)

return time.strftime('%y-%m-%d %h:%m:%s',timestruct)

2、  '''獲取檔案的大小,結果保留兩位小數,單位為mb'''

defget_filesize

(filepath):

filepath = unicode(filepath,'utf8')

fsize = os.path.getsize(filepath)

fsize = fsize/float(1024*1024)

return round(fsize,2)

3、  '''獲取檔案的訪問時間'''

defget_fileaccesstime

(filepath):

filepath = unicode(filepath,'utf8')

t = os.path.getatime(filepath)

return timestamptotime(t)

4、  '''獲取檔案的建立時間'''

defget_filecreatetime

(filepath):

filepath = unicode(filepath,'utf8')

t = os.path.getctime(filepath)

return timestamptotime(t)

5、  '''獲取檔案的修改時間'''

defget_filemodifytime

(filepath):

filepath = unicode(filepath,'utf8')

t = os.path.getmtime(filepath)

return timestamptotime(t)

python 獲取檔案大小,建立時間和訪問時間

encoding utf8 import time import datetime import os def timestamptotime timestamp timestruct time.localtime timestamp return time.strftime y m d h m s...

python獲取檔案大小

獲取檔案大小,直接獲取檔案大小為位元組數,換算成mbyte。獲取檔案大小 import os def get filesize fl s round os.path.getsize fl float 1024 1024 2 return selse 但遇到部分無訪問許可權的檔案,就會報錯 permi...

獲取檔案大小

1 找到檔案所在的絕對路徑。系統路徑 projectpath request.getsession getservletcontext getrealpath 檔案路徑 在上傳檔案的時候,一定會有檔案相對路徑,如果不清楚,可以打斷點然後在本地找到此檔案。檔案相對路徑 filepath 絕對路徑rea...