Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Suppose I've uploaded a bunch of files (images in this case, if it matters) to GAE's BlobStore.
Later, I want to be able to download those files from somewhere else.
I know that I can use BlobStoreService's serve method to grab a blob by BlobKey, but how do I get the blobkey associated with a given filename?
I can't seem to find any built-in functionality for this.

share|improve this question
What if two of your users upload files with the same name? – Nick Johnson Apr 4 '11 at 1:01

2 Answers

up vote 12 down vote accepted

BlobInfo metadata that contains the filename attribute is stored in read-only __BlobInfo__ entities in the datastore.

Query query = new Query("__BlobInfo__"); 
query.addFilter("filename", FilterOperator.EQUAL, filename); 
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService(); 
PreparedQuery pq = datastore.prepare(query); 
List<Entity> entList = pq.asList(FetchOptions.Builder.withLimit(1)); 
String name = entList.get(0).getKey().getName();
share|improve this answer
which is basically what i said. – jtahlborn Apr 2 '11 at 10:57
@jtahlborn Specifics - and even better, sample code - count for a lot. – Nick Johnson Apr 4 '11 at 1:01
@Nick Johnson - my answer was sufficient for anyone who knows anything about app engine to solve their problem. if the user actually required this full answer, then their question should have been "how do i query a model object in app engine". 2 different questions. – jtahlborn Apr 4 '11 at 15:57
1  
@jtahlborn I, and at least two others, would appear to disagree. – Nick Johnson Apr 4 '11 at 23:30
2  
@jtahlborn So what you're saying is that you knew the complete answer, you were just too lazy to provide it? You shouldn't be surprised your answer isn't being upvoted. – Nick Johnson Apr 8 '11 at 4:00
show 4 more comments

You can query the BlobInfo objects by filename.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.