200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > python 上传文件夹 python – 使用Flask上传文件夹/文件

python 上传文件夹 python – 使用Flask上传文件夹/文件

时间:2020-04-25 18:18:18

相关推荐

python 上传文件夹 python – 使用Flask上传文件夹/文件

我可以通过这个例子上传一个带烧瓶的文件:

但我不知道如何上传文件夹或一些文件.我搜索过,我发现了这个:

Uploading multiple files with Flask.最后,我得到了如何上传多文件上传.

我会告诉你下面的代码:(这是一个好习惯吗?我不知道)

@app.route('/upload/',methods = ['GET','POST'])

def upload_file():

if request.method =='POST':

files = request.files.getlist('file[]',None)

if files:

for file in files:

filename = secure_filename(file.filename)

file.save(os.path.join(app.config['UPLOAD_FOLDER'],filename))

return hello()

return render_template('file_upload.html')

但是,我仍然不知道如何上传属于该文件夹的文件夹和文件.

你能告诉我怎么样?

我正在处理的目录树:

.

├── manage.py

├── templates

│ ├── file_upload.html

│ └── hello.html

└── uploads

├── BX6dKK7CUAAakzh.jpg

└── sample.txt

from flask import Flask,abort,render_template,request,redirect,url_for

from werkzeug import secure_filename

import os

app = Flask(__name__)

UPLOAD_FOLDER = './uploads'

app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER

@app.route('/')

def index():

return redirect(url_for('hello'))

@app.route('/hello/')

@app.route('/hello/')

def hello(name = None):

return render_template('hello.html',name=name)

@app.route('/upload/','POST'])

def upload_file():

if request.method =='POST':

file = request.files['file']

if file:

filename = secure_filename(file.filename)

file.save(os.path.join(app.config['UPLOAD_FOLDER'],filename))

return hello()

return render_template('file_upload.html')

if __name__ == '__main__':

app.run(debug = True)

文件上传模板(manage.py):

Upload new File

Upload new File

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。