python如何读取文件大小
发布网友
发布时间:2022-05-01 00:30
我来回答
共3个回答
热心网友
时间:2022-04-18 20:39
python读取文件大小的代码如下:
[python] view plaincopyimport os
from os.path import join, getsize
def getdirsize(dir):
size = 0L
for root, dirs, files in os.walk(dir):
size += sum([getsize(join(root, name)) for name in files])
return size
if '__name__' == '__main__':
filesize = getdirsize(r'c:\windows')
print 'There are %.3f' % (size/1024/1024), 'Mbytes in c:\\windows'
热心网友
时间:2022-04-18 21:57
你好:
具体的代码如下:
import os
filePath=r"C:\Users\Administrator\Desktop\Data\Modify\aa\Excel"
for r,ds,fs in os.walk(filePath):
for f in fs:
print os.path.join(r,f),
size=os.path.getsize(os.path.join(r,f))
print 'There are %f K'% (size/1024.0)
热心网友
时间:2022-04-18 23:32
用 os.path.getsize,参数是文件路径。