How to check if blobstore file used for writing was finalized and is ready for reading?
Am I to try to open the file and catch FinalizationError, try to get_blob_key or is there a files.is_readable(blobstore_file_name) method?
UPDATE:
I seem to wrote a confusing question, so I'll paint a background picture.
I am generating a file using file api with multiple background task's. This file is not readable until it is finalized.
I want to show a list of files being generated and show a download link for each when they're ready.
Adding boolean property "finalized" to an entity referencing these files just to indicate that the background process has finished, sounds silly.
And there are other cases where I would like to check the state of the file, without relaying on myself storing an indicator for each and every finalized file.