473,385 Members | 1,813 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Checking if a text file is blank

Greetings!

I've just started learning python, so this is probably one of those
obvious questions newbies ask.

Is there any way in python to check if a text file is blank?

What I've tried to do so far is:

f = file("friends.txt", "w")
if f.read() is True:
"""do stuff"""
else:
"""do other stuff"""
f.close()

What I *mean* to do in the second line is to check if the text file is
not-blank. But apparently that's not the way to do it.

Could someone set me straight please?
Jun 27 '08 #1
7 22097
On Apr 20, 1:04 am, elno...@gmail.com wrote:
Greetings!

I've just started learning python, so this is probably one of those
obvious questions newbies ask.

Is there any way in python to check if a text file is blank?

What I've tried to do so far is:

f = file("friends.txt", "w")
if f.read() is True:
"""do stuff"""
else:
"""do other stuff"""
f.close()

What I *mean* to do in the second line is to check if the text file is
not-blank. But apparently that's not the way to do it.

Could someone set me straight please?
The flaw in your code is that "f.read() is True" doesn't do what you
think it does.

(1) The "is" operator is a test for object IDENTITY. Two objects can
be equal but distinct
>>list1 = list2 = [1, 2, 3]
list1 is list2
True
>>list1[-1] = 4
list2
[1, 2, 4]
>>list1 = [1, 2, 3]
list2 = [1, 2, 3]
list1 is list2
False
>>list1[-1] = 4
list2
[1, 2, 3]

(2) Even if you used "f.read() == True", it still wouldn't work in
Python. Values can be true or false (in the context of an if or while
statement) without being equal to True or False.

Values that are equal to True:
True, 1, 1.0, (1+0j), decimal.Decimal(1)

Values that are true but not equal to True:
"spam", "1", (1,), [1], set([1]), {1: 2}, etc.

Values that are equal to False:
False, 0, 0.0, 0j, decimal.Decimal(0)

Values that are false but not equal to False:
"", (), [], set()

And even if you are sure that you're only dealing with values of 0 or
1, it's unnecessary to write "if x == True:". It's redundant, just
like "if (x == True) == True:" or "if ((x == True) == True) ==
True:". Just write "if x:". Or, in this specific case, "if
f.read():".

(3) While not affecting your program's correctness, it's rather
inefficient to read a gigabytes-long file into memory just to check
whether it's empty. Read just the first line or the first character.
Or use os.stat .
Jun 27 '08 #2
>
Is there any way in python to check if a text file is blank?

What I've tried to do so far is:

f = file("friends.txt", "w")
if f.read() is True:
"""do stuff"""
else:
"""do other stuff"""
f.close()

What I *mean* to do in the second line is to check if the text file is
not-blank. But apparently that's not the way to do it.

Could someone set me straight please?
You're opening your file in write mode, so it gets truncated. Add "+"
to your open mode (r+ or w+) if you want to read and write.

Here is the file docstring:

file(name[, mode[, buffering]]) -file object

Open a file. The mode can be 'r', 'w' or 'a' for reading (default),
writing or appending. The file will be created if it doesn't exist
when opened for writing or appending; it will be truncated when
opened for writing. Add a 'b' to the mode for binary files.
Add a '+' to the mode to allow simultaneous reading and writing.
If the buffering argument is given, 0 means unbuffered, 1 means line
buffered, and larger numbers specify the buffer size.
Add a 'U' to mode to open the file for input with universal newline
support. Any line ending in the input file will be seen as a '\n'
in Python. Also, a file so opened gains the attribute 'newlines';
the value for this attribute is one of None (no newline read yet),
'\r', '\n', '\r\n' or a tuple containing all the newline types seen.

'U' cannot be combined with 'w' or '+' mode.

Note: open() is an alias for file().

Also, comparison of a value with True is redundant in an if statement.
Rather use 'if f.read():'

David.
Jun 27 '08 #3
el*****@gmail.com wrote:
Greetings!

I've just started learning python, so this is probably one of those
obvious questions newbies ask.

Is there any way in python to check if a text file is blank?

What I've tried to do so far is:

f = file("friends.txt", "w")
if f.read() is True:
"""do stuff"""
else:
"""do other stuff"""
f.close()

What I *mean* to do in the second line is to check if the text file is
not-blank. But apparently that's not the way to do it.

Could someone set me straight please?

Along with the other posts ... consider using the lstat command to get
information about the file.
import os
print os.lstat("friends.txt")[6]
gives the size in bytes of friends.txt or throws an OSError if
friends.txt does not exist.

lstat is portable, it defaults to stat on Windows.
Jun 27 '08 #4
>
import os
print os.lstat("friends.txt")[6]
I prefer os.lstat("friends.txt").st_size
Jun 27 '08 #5
Hi

el*****@gmail.com wrote:
Greetings!

Is there any way in python to check if a text file is blank?

obviously there are many ways, one simple way is to check length if its
None then the file is blank.

>
What I've tried to do so far is:

f = file("friends.txt", "w")
if f.read() is True:
"""do stuff"""
else:
"""do other stuff"""
f.close()
If checking the file is blank is what you are tying to do then why do
you open the file in the write mode.


Prashanth
Jun 27 '08 #6
On Apr 20, 2:04 pm, elno...@gmail.com wrote:
Greetings!

I've just started learning python, so this is probably one of those
obvious questions newbies ask.

Is there any way in python to check if a text file is blank?

What I've tried to do so far is:

f = file("friends.txt", "w")
if f.read() is True:
"""do stuff"""
else:
"""do other stuff"""
f.close()

What I *mean* to do in the second line is to check if the text file is
not-blank. But apparently that's not the way to do it.

Could someone set me straight please?
I use os.path.getsize(path) for this purpose.
Jun 27 '08 #7
David wrote:
> import os
print os.lstat("friends.txt")[6]

I prefer os.lstat("friends.txt").st_size
MUCH easier to remember!!!!

Thanks!
Jun 27 '08 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Basil Fenix | last post by:
I check data from a text file with a mdb Database using a progressbar and changing the Caption by % to indicate to the user what is happening.The file is large and takes quite a while. The problem...
6
by: Ruben | last post by:
Hello. I am trying to read a small text file using the readline statement. I can only read the first 2 records from the file. It stops at the blank lines or at lines with only spaces. I have a...
4
by: Stuk | last post by:
Hi, im false beginner in C so that`s why im writting here :). I have to write a Text Reformater, which should read data from text file every Verse. In text file may appear special directives (for...
5
by: soup_nazi | last post by:
I want to remove duplicate entries within a text file. So if I had this within a text file... Applications/Diabetic Registry/ Applications/Diabetic Registry/ Applications/Diabetic Registry/...
4
by: Andyza | last post by:
I'm using FileSystemObject to open and write to a tab delimited text file. First, I connect to a database and select some data. Then I create the text file and insert each record in the text...
0
by: erucevice | last post by:
I am trying to bcp a text file that is written out of a Java application. The text file has important order information that I need to bcp into a SQL Server 2000 database. The problem is that when...
6
by: EricR | last post by:
I am trying to bcp import a text file into a SQL Server 2000 database. The text file is coming out of a java application where order information is written to the text file. Each record is on it's...
42
by: =?Utf-8?B?UGxheWE=?= | last post by:
I have an if statement that isn't working correctly and I was wondering how I check for a blank string. My Code Example if me.fieldname(arrayIndex) = "" then ----- end if When I do this and...
2
VijaySofist
by: VijaySofist | last post by:
Hi All! I want to check whether a given text File is Already Opened or not. I am using Visual Basic 6.0 in the Windows XP OS. I am using the following code. It works for .doc, .xls and .mdb....
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.