determining bytes read from a file.

vineeth nvineeth at gmail.com
Thu Dec 13 07:04:59 EST 2007


Hello all,
   I have come across a weird problem, I need to determine the amount
of bytes read from a file, but couldn't figure it out ,
   My program does this :
__
   file = open("somefile")
   data = file.read()
   print "bytes read ", len(data)
---

  But the bytes read is not being printed correctly, I think bytes are
being counted only till the first occurance of '\0' is encountered.
Even though the file is of a very large size, the bytes till the first
'\0' are counted.

 Can someone pls advise me regarding this.
 Thanks.

Best Regards,
Vineeth.



More information about the Python-list mailing list