I have this code:
JavaScript
x
17
17
1
@app.route("/mobile/upload", methods=["POST"])
2
async def upload_file():
3
uploaded_files = await request.files
4
uploaded_file = uploaded_files['file']
5
uploaded_file_name = generate_name()
6
7
fmt = content_type.get(uploaded_file.content_type)
8
9
if fmt not in content_type:
10
11
return f"That file type is not supported yet ({uploaded_file.filename}{uploaded_file.content_type}), adding now!"
12
13
full_name = uploaded_file_name + fmt
14
15
await uploaded_file.save("./static/" + full_name)
16
return redirect("/static/" + full_name)
17
And what I would like to do is get the file extenstion, like .md, .txt and automatically add it to the list of allowed content types.
I have looked at the docs but can’t find what I’m looking for.
Heres the content type list:
JavaScript
1
12
12
1
content_type = {
2
"image/png": ".png",
3
"image/gif": ".gif",
4
"image/jpeg": ".jpeg",
5
"text/plain": ".txt",
6
"text/html": ".html",
7
"audio/mpeg": ".mp3",
8
"video/mp4": ".mp4",
9
"text/x-generic": ".py",
10
"application/x-msdownload": ".exe"
11
}
12
Thanks in advance!
Advertisement
Answer
Looking at the comments, it seems your answer is pretty clear.
Just allow any file type and don’t use MIME types.
Thank @Anonymous and @J.G.