gpt4 book ai didi

python - 通过 Flask 上传多个文件或整个文件夹

转载 作者:行者123 更新时间:2023-12-01 06:25:30 24 4
gpt4 key购买 nike

我需要创建一个实用程序,可以通过 Flask 存储整个文件夹、文件夹或文件,目前我正在使用以下代码一次上传 1 个文件

flask 代码:

from flask import Flask, render_template, request

from werkzeug.utils import secure_filename
app = Flask(__name__)

@app.route('/')
def upload_file():
return render_template('upload.html')

@app.route('/uploader', methods = ['GET', 'POST'])
def upload_file1():
if request.method == 'POST':
f = request.files['file']
f.save(secure_filename(f.filename))
return 'file uploaded successfully'

if __name__ == '__main__':
app.run(debug = True)

html代码:

<html>
<body>
<form action = "http://localhost:5000/uploader" method = "POST"
enctype = "multipart/form-data">
<input type = "file" name = "file" />
<input type = "submit"/>
</form>
</body>
</html>

我收到以下对话框:

dialog box

但这只允许我一次插入一个文件。

我需要一些可以让我上传整个目录或多个文件的东西。可以使用 Flask 来完成吗?如果没有,Python 有没有其他可用的替代方案?任何有关此事的帮助将不胜感激!

最佳答案

答案:

html 文件

<html>
<body>
<form action = "http://localhost:5000/uploader" method = "POST"
enctype = "multipart/form-data">
<input type = "file" name = "file" multiple/>
<input type = "submit"/>
</form>
</body>
</html>

在输入标记中,multiple 是允许访问多个文件的强制参数!

flask 代码:

from flask import Flask, render_template, request
#from werkzeug import secure_filename
from werkzeug.utils import secure_filename
app = Flask(__name__)

@app.route('/')
def upload_file():
return render_template('upload.html')

@app.route('/uploader', methods = ['GET', 'POST'])
def upload_file1():
if request.method == 'POST':
files = request.files.getlist("file")
for file in files:
file.save(secure_filename(file.filename))
return 'file uploaded successfully'

if __name__ == '__main__':
app.run(debug = True)

使用flask.request.getlist获取目录中的文件列表。要处理多个文件,只需使用循环来管理它们,如上所示。

关于python - 通过 Flask 上传多个文件或整个文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60167773/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com