반응형
파일이 비어 있는지 확인하는 방법?
텍스트 파일이 있습니다.
비어 있는지 여부를 어떻게 확인할 수 있습니까?
>>> import os
>>> os.stat("file").st_size == 0
True
import os
os.path.getsize(fullpathhere) > 0
모두 getsize()
와 stat()
파일이 존재하지 않는 경우 예외가 발생합니다. 이 함수는 다음을 발생시키지 않고 True / False를 반환합니다.
import os
def is_non_zero_file(fpath):
return os.path.isfile(fpath) and os.path.getsize(fpath) > 0
어떤 이유로 든 파일을 이미 열었다면 다음을 시도하십시오.
>>> with open('New Text Document.txt') as my_file:
... # I already have file open at this point.. now what?
... my_file.seek(0) #ensure you're at the start of the file..
... first_char = my_file.read(1) #get the first character
... if not first_char:
... print "file is empty" #first character is the empty string..
... else:
... my_file.seek(0) #first character wasn't empty, return to start of file.
... #use file now
...
file is empty
ghostdog74의 답변 과 의견을 결합하여 재미있게 사용하겠습니다 .
>>> import os
>>> os.stat('c:/pagefile.sys').st_size==0
False
False
비어 있지 않은 파일을 의미합니다.
함수를 작성해 봅시다 :
import os
def file_is_empty(path):
return os.stat(path).st_size==0
파일 객체가 있다면
>>> import os
>>> with open('new_file.txt') as my_file:
... my_file.seek(0, os.SEEK_END) # go to end of file
... if my_file.tell(): # if current position is truish (i.e != 0)
... my_file.seek(0) # rewind the file for later use
... else:
... print "file is empty"
...
file is empty
Python3을 사용하는 경우 속성 (파일 크기 (바이트)) 이있는 메소드를 사용하여 정보에 pathlib
액세스 할 수 있습니다 .os.stat()
Path.stat()
st_size
>>> from pathlib import Path
>>> mypath = Path("path/to/my/file")
>>> mypath.stat().st_size == 0 # True if empty
중요한 문제 : 압축 된 빈 파일 은 다음과 같이 테스트 getsize()
하거나 stat()
기능을 수행 할 때 0이 아닌 것처럼 보입니다 .
$ python
>>> import os
>>> os.path.getsize('empty-file.txt.gz')
35
>>> os.stat("empty-file.txt.gz").st_size == 0
False
$ gzip -cd empty-file.txt.gz | wc
0 0 0
따라서 테스트 할 파일이 압축되어 있는지 확인하고 (예 : 파일 이름 접미사 검사) 임시 위치로 파일을 압축 해제하거나 압축 해제하고 압축되지 않은 파일을 테스트 한 다음 완료되면 삭제하십시오.
참고 URL : https://stackoverflow.com/questions/2507808/how-to-check-whether-a-file-is-empty-or-not
반응형
'IT story' 카테고리의 다른 글
Chrome의 스크립트 디버거가 자바 스크립트를 다시로드하도록 강제하는 방법은 무엇입니까? (0) | 2020.04.12 |
---|---|
AngularJS 템플릿의 삼항 연산자 (0) | 2020.04.12 |
쉘 스크립트가 파이프를 통해 실행되고 있는지 감지하는 방법은 무엇입니까? (0) | 2020.04.12 |
IntelliJi 아이디어가 시작될 때 열린 마지막 프로젝트를 방지하는 방법 (0) | 2020.04.12 |
jQuery-CSS 클래스가 변경된 경우 Fire 이벤트 (0) | 2020.04.12 |