google.appengine.api.blobstore.file_blob_storage.FileBlobStorage

The storage mechanism that stores blob data on a local disk.

Inherits From: BlobStorage, expected_type

storage_directory Directory within which to store blobs.
app_id The application ID on whose behalf to store blobs.

Methods

DeleteBlob

View source

Deletes blob data.

Deleting an unknown blob will not raise an error.

Args
blob_key The blob key of an existing blob that you want to delete.

OpenBlob

View source

Opens a blob file for streaming.

Args
blob_key The blob key of an existing blob that you want to open.

Returns
An open file stream to read the blob.

StoreBlob

View source

Stores a blob stream .

Args
blob_key The blob key of the blob that you want to store.
blob_stream A stream or a stream-like object that will generate blob content.