python獲取檔案大小

2021-10-17 09:09:17 字數 625 閱讀 9164

獲取檔案大小,直接獲取檔案大小為位元組數,換算成mbyte。

#獲取檔案大小

import os

def get_filesize(fl):

s = round(os.path.getsize(fl)/float(1024*1024),2)

return s

else

但遇到部分無訪問許可權的檔案,就會報錯

permissionerror: [winerror 5] ????????: 'd:\\data\\erybook.mdf'

後來加入異常處理,如下:

#獲取檔案大小

import os

def get_filesize(fl):

try:

s = round(os.path.getsize(fl)/float(1024*1024),2)

except windowserror:

print(fl+'獲取檔案大小時')

print(windowserror)

pass  

else:

return s

return

s

獲取檔案大小

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

VC獲取檔案大小

vc獲取檔案大小 我查到兩種方法 方法一 win32 find data fileinfo handle hfind dword filesize const char filename 檔案的路徑及名字 hfind findfirstfile filename fileinfo if hfind ...

ORACLE獲取檔案大小

set serveroutput on declare ex boolean flen number bsize number begin utl file.fgetattr oraload test.txt ex,flen,bsize if ex then dbms output.put line...