我想从谷歌应用引擎应用程序访问我计算机中的文件。如果我将文件放在应用程序的 src 文件夹中,则没有问题,但我需要将该文件放在该文件夹之外。
当我尝试访问此文件时,出现下一个错误:
Traceback (most recent call last):
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\ext\webapp\_webapp25.py", line 712, in __call__
handler.post(*groups)
File "C:\Users\path\Documents\path\oauth2client\appengine.py", line 469, in check_oauth
return method(request_handler, *args, **kwargs)
File "C:\Users\path\Documents\path\myapp.py", line 88, in post
filename=open('C:/Users/path_to_file/Documento 1.docx','r')
File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\dev_appserver_import_hook.py", line 635, in __init__
raise IOError(errno.EACCES, 'file not accessible', filename)
IOError: [Errno 13] file not accessible: 'C:/Users/path_to_file/Documento 1.docx'
我已经读过,如果文件在 app.yaml 中定义为静态文件,则无法从 GAE 访问。这是我的 app.yaml。我不知道是否有问题:
application: myapp
version: 1
runtime: python
api_version: 1
handlers:
- url: /.*
script: myapp.py
这是尝试访问该文件的应用程序的一部分:
filename='C:/Users/path_to_file/Documento 1.docx'
media_body = MediaFileUpload(filename,resumable=True)
有人知道为什么我会收到“文件不可访问”错误吗?
谢谢!