Is there a way to find the size of a file object that is currently open?
Specifically, I am working with the tarfile module to create tarfiles, but I don’t want my tarfile to exceed a certain size. As far as I know, tarfile objects are file-like objects, so I imagine a generic solution would work.
Advertisement
Answer
JavaScript
x
11
11
1
$ ls -la chardet-1.0.1.tgz
2
-rwxr-xr-x 1 vinko vinko 179218 2008-10-20 17:49 chardet-1.0.1.tgz
3
$ python
4
Python 2.5.1 (r251:54863, Jul 31 2008, 22:53:39)
5
[GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)] on linux2
6
Type "help", "copyright", "credits" or "license" for more information.
7
>>> f = open('chardet-1.0.1.tgz','rb')
8
>>> f.seek(0, os.SEEK_END)
9
>>> f.tell()
10
179218L
11
Adding ChrisJY’s idea to the example
JavaScript
1
5
1
>>> import os
2
>>> os.fstat(f.fileno()).st_size
3
179218L
4
>>>
5
Note: Based on the comments, f.seek(0, os.SEEK_END)
is must before calling f.tell()
, without which it would return a size of 0. The reason is that f.seek(0, os.SEEK_END)
moves the file object’s position to the end of the file.