I am porting my WebOS(Shedokan OS) to python from php so I can use it
og GAE and I came to the stage where I need to read and write files.

And after a lot of searching I found out that I cannot create files or
write to files.
here is my code:

from google.appengine.ext import db

class File(db.Model):
        filename = db.StringProperty(multiline=False)
        filedata = db.BlobProperty
        date = db.DateTimeProperty(auto_now_add=True)

def createFile(fileName, content):
        if fileName=='' or content=='':
                return
        file = File()
        file.filedata = content
        file.filename = fileName
        file.put()

def getFile(fileName):

        if fileName=='':
                return
        return db.GqlQuery('SELECT * FROM File WHERE filename= :1',fileName)


any way to make this work with a folder structure?

also I want to note that I started learning python just about 3 days
ago, so I think I'm a begginer.

thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to