On Sun, Jan 25, 2009 at 7:49 AM, Martin wrote: > When I run this code locally on my machine, everything is alright. I > have my Python script at the root of the directory and it walks the > files under the data directory. However, when I upload and run the > exact same code in GAE, it doesn`t work. It seems to me that the > directory structure of my application is not exactly replicated in > Google App Engine. Where are the static files?
You can't access static files in production. They are not in the same filesystem - they are stored on different servers fine tuned to serve them efficiently. -- rodrigo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
