텍스트 파일이 있습니다.
비어 있는지 여부를 어떻게 확인할 수 있습니까?
텍스트 파일이 있습니다.
비어 있는지 여부를 어떻게 확인할 수 있습니까?
답변:
>>> import os
>>> os.stat("file").st_size == 0
True
모두 getsize()
와 stat()
파일이 존재하지 않는 경우 예외가 발생합니다. 이 함수는 던지지 않고 True / False를 반환합니다 (단순하지만 덜 강력 함).
import os
def is_non_zero_file(fpath):
return os.path.isfile(fpath) and os.path.getsize(fpath) > 0
os.path.getsize()
os.path.isfile(fpath)
및에 대한 호출간에 파일이 제거 될 수 있으므로 경쟁 조건이 있습니다 os.path.getsize(fpath)
.이 경우 제안 된 함수에서 예외가 발생합니다.
TypeError
입력 fpath가 인 경우 발생하는 것을 잡아야 None
합니다.
어떤 이유로 든 파일을 이미 열었다면 다음을 시도하십시오.
>>> 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
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
파일 객체가 있다면
>>> 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
중요한 문제 : 압축 된 빈 파일 은 다음과 같이 테스트 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
따라서 테스트 할 파일이 압축되어 있는지 확인하고 (예 : 파일 이름 접미사 검사) 임시 위치로 파일을 압축 해제하거나 압축 해제하고 압축되지 않은 파일을 테스트 한 다음 완료되면 삭제하십시오.
빈 파일이 무엇인지 정의하지 않았으므로. 빈 줄만있는 파일과 빈 파일을 고려할 수도 있습니다. 따라서 파일 에 빈 줄 (공백 문자, '\ r', '\ n', '\ t') 만 포함되어 있는지 확인 하려면 아래 예를 따르십시오.
파이썬 3
import re
def whitespace_only(file):
content = open(file, 'r').read()
if re.search(r'^\s*$', content):
return True
설명 : 위의 예는 정규식 (regex)을 사용 content
하여 파일 의 컨텐츠 ( ) 와 일치시킵니다 .
구체적으로, 정규 표현식의 경우 : ^\s*$
전체적으로 파일에 빈 줄 및 / 또는 빈 공간 만 포함 된 경우를 의미합니다.
- ^
줄의 시작 위치를 지정합니다
- \s
공백 문자 ([\ r \ n \ t \ f \ v]와 동일) 와 일치합니다
.- *
수량 자 — 가능한 한 0 번에서 무제한으로 일치하여 필요한만큼 되돌립니다 ( 욕심)
- $
줄의 끝에 위치를 주장
csv 파일이 비어 있는지 확인하려면 .......이 시도하십시오
with open('file.csv','a',newline='') as f:
csv_writer=DictWriter(f,fieldnames=['user_name','user_age','user_email','user_gender','user_type','user_check'])
if os.stat('file.csv').st_size > 0:
pass
else:
csv_writer.writeheader()
stat.ST_SIZE
6 대신