テキストファイルがあります。
空かどうかを確認するにはどうすればよいですか。
>>> 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's answer とコメントを合わせてお楽しみください。
>>> 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
pathlib
name__でPython3を使用している場合は、 stat
NAME _ メソッドを使用して os.stat()
情報にアクセスできます。このメソッドの属性はst_size
(ファイルサイズはバイト):
>>> from pathlib import Path
>>> mypath = Path("path/to/my/file")
>>> mypath.stat().st_size == 0 # True if empty