0

Google App Engine does not create a file when using the file appender.

Chad Nouis
  • 6,861
  • 1
  • 27
  • 28
user2228777
  • 117
  • 1
  • 1
  • 7

1 Answers1

1

Google App Engine simply does not provide access to the file system. You can read from within your web-application, but you can't write anywhere. Those restrictions are the same for any framework you are using.

Most common example: you can upload file only with File Streaming API, without storing actual file in some temporary folder.

n1ckolas
  • 4,380
  • 3
  • 37
  • 43