我有一个文本文件。
如何检查是否为空?
我有一个文本文件。
如何检查是否为空?
Answers:
>>> 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
由于您尚未定义什么是空文件。有些人可能会认为只有空白行的文件也是空文件。因此,如果要检查文件是否仅包含空白行(任何空白字符,'\ r','\ n','\ t'),则可以按照以下示例进行操作:
Python3
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])
- *
量词-尽可能在零和无限次数之间进行匹配,并根据需要返回(贪婪)
- $
在行尾声明位置
如果要检查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