답변:
에서 반환 한 객체 의 st_size
속성이 필요합니다 . (Python 3.4+)를 사용하여 얻을 수 있습니다 .os.stat
pathlib
>>> from pathlib import Path
>>> Path('somefile.txt').stat()
os.stat_result(st_mode=33188, st_ino=6419862, st_dev=16777220, st_nlink=1, st_uid=501, st_gid=20, st_size=1564, st_atime=1584299303, st_mtime=1584299400, st_ctime=1584299400)
>>> Path('somefile.txt').stat().st_size
1564
또는 사용 os.stat
:
>>> import os
>>> os.stat('somefile.txt')
os.stat_result(st_mode=33188, st_ino=6419862, st_dev=16777220, st_nlink=1, st_uid=501, st_gid=20, st_size=1564, st_atime=1584299303, st_mtime=1584299400, st_ctime=1584299400)
>>> os.stat('somefile.txt').st_size
1564
출력은 바이트 단위입니다.
stat_result.st_blocks
블록 크기,하지만, 난 여전히 프로그래밍을 얻을 크로스 플랫폼하는 방법을 찾고 있어요 (하지 경유 tune2fs
등)
사용 os.path.getsize
:
>>> import os
>>> b = os.path.getsize("/path/isa_005.mp3")
>>> b
2071611
출력은 바이트 단위입니다.
os.path.getsize
은 간단합니다return os.stat(filename).st_size
os.stat
입니다. 그렇다면 그 차이는 상당한 수의 마이크로 초로
다른 답변은 실제 파일에 대해서는 작동하지만 "파일과 유사한 객체"에 작동하는 것이 필요한 경우 다음을 시도하십시오.
# f is a file-like object.
f.seek(0, os.SEEK_END)
size = f.tell()
제한된 테스트에서 실제 파일과 StringIO에서 작동합니다. (Python 2.7.3.) "file-like object"API는 물론 엄격한 인터페이스는 아니지만 API 문서 는 파일과 같은 오브젝트가 seek()
및 을 지원해야한다고 제안합니다 tell()
.
편집하다
이것의 또 다른 차이점은 파일을 읽을 권한이 없어도 파일 os.stat()
을 작성할 수 있다는 stat()
것입니다. 읽기 권한이 없으면 찾기 / tell 접근 방식이 작동하지 않습니다.
편집 2
Jonathon의 제안에서 편집증 버전이 있습니다. (위의 버전은 파일 끝에 파일 포인터를 남깁니다. 따라서 파일에서 읽으려고하면 0 바이트가 반환됩니다!)
# f is a file-like object.
old_file_position = f.tell()
f.seek(0, os.SEEK_END)
size = f.tell()
f.seek(old_file_position, os.SEEK_SET)
os
. 대신 f.seek(0, 2)
0 바이트를 찾기 위해 쓰십시오 .
os
사용하지 않으면 :f.seek(old_file_position, 0)
os
.
size
출력이 바이트입니까?
#seek()
. wiki.sei.cmu.edu/confluence/display/c/…
import os
def convert_bytes(num):
"""
this function will convert bytes to MB.... GB... etc
"""
for x in ['bytes', 'KB', 'MB', 'GB', 'TB']:
if num < 1024.0:
return "%3.1f %s" % (num, x)
num /= 1024.0
def file_size(file_path):
"""
this function will return the file size
"""
if os.path.isfile(file_path):
file_info = os.stat(file_path)
return convert_bytes(file_info.st_size)
# Lets check the file size of MS Paint exe
# or you can use any file path
file_path = r"C:\Windows\System32\mspaint.exe"
print file_size(file_path)
결과:
6.1 MB
return f'{num:.1f} {x}'
은 Python> = 3.5 로 변경할 수 있습니다 .
사용 pathlib
( PyPI에서 사용 가능한 백 포트 또는 Python 3.4에 추가 ) :
from pathlib import Path
file = Path() / 'doc.txt' # or Path('./doc.txt')
size = file.stat().st_size
이것은 실제로는 인터페이스 일뿐 os.stat
이지만 사용 pathlib
하면 다른 파일 관련 작업에 쉽게 액세스 할 수 있습니다.
다른 단위 bitshift
로 변환하려는 경우 사용 하는 트릭 이 있습니다 bytes
. 당신이 오른쪽 10
으로 이동하면 기본적으로 순서대로 (다중) 이동합니다.
예:
5GB are 5368709120 bytes
print (5368709120 >> 10) # 5242880 kilobytes (kB)
print (5368709120 >> 20 ) # 5120 megabytes (MB)
print (5368709120 >> 30 ) # 5 gigabytes (GB)
#Get file size , print it , process it...
#Os.stat will provide the file size in (.st_size) property.
#The file size will be shown in bytes.
import os
fsize=os.stat('filepath')
print('size:' + fsize.st_size.__str__())
#check if the file size is less than 10 MB
if fsize.st_size < 10000000:
process it ....
Path('./doc.txt').stat().st_size