我有以下文件结构:
.
├── app
│ ├── api_routes
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ └── routes.py
│ ├── __init__.py
│ ├── main_routes
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ └── routes.py
│ ├── models.py
│ ├── static
│ │ └── styles.css
│ ├── templates
│ │ └── base.html
│ └── uploads
│ └── 10_0_0.jpg
├── application.py
└── config.py
在我的 config.py 中,我有这个:
class Config(object):
UPLOAD_FOLDER = 'uploads/'
当我保存上传的文件,然后将其发送回用户(例如(时,我使用的是:
fname = 'foo.jpg'
fname_save = os.path.join(current_app.root_path, current_app.config['UPLOAD_FOLDER'], fname)
fname_retr = os.path.join(current_app.config['UPLOAD_FOLDER'], fname)
file.save(fname_save)
return send_from_directory(os.path.dirname(fname_retr),
os.path.basename(fname_retr))
cwd(保存文件的位置(中的上传文件夹和烧瓶模块正在运行的文件夹(app/(具有不同的名称有点乏味。有没有比我目前的解决方案更优雅的解决方案来解决这个问题?
我会
怎么做:
@app.route('/upload', methods=['POST'])
def myroute():
fname = 'foo.jpg'
file = request.file[0] # not save at all
send_back_file = io.BytesIO(file.read())
file.seek(0)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], fname))
return send_file(send_back_file, attachment_filename=fname, as_attachement=True)
资源:
- http://flask.pocoo.org/snippets/32/
- http://flask.pocoo.org/docs/0.12/patterns/fileuploads/