There's a file that I would like to make sure does not grow larger than 2 GB (as it must run on a system that uses ext 2). What's a good way to check a file's size bearing in mind that I will be writing to this file in between checks? In particular, do I need to worry about buffered, unflushed changes that haven't been written to disk yet?
|
|
You could start with something like this:
Then you could use it like this:
Obviously, this implementation doesn't work if you aren't writing the file from scratch, but you could adapt your This works regardless of encoding, as strings are just sequences of bytes.
|
|||||||||
|
|
Perhaps not what you want, but I'll suggest it anyway.
Alternatively for an opened file you can use the fstat function, which can be used on an opened file. It takes an integer file handle, not a file object, so you have to use the fileno method on the file object:
|
||||
|
|
|
Most reliable would be create a wrapping class which would check file's size when you open it, track write and seek operations, count current size based on those operations and prevent from exceeding size limit. |
|||
|
|
|
|
|||
|
|
|
Or, if the file is already open:
That's how many bytes the file is. |
|||
|
|
|
I'm not familiar with python, but doesn't the stream object (or whatever you get when opening a file) have a property that contains the current position of the stream? Similar to what you get with the ftell() C function, or Stream.Position in .NET. Obviously, this only works if you are positioned at the end of the stream, which you are if you are currently writing to it. The benefit of this approach is that you don't have to close the file or worry about unflushed data. |
|||
|
|