mirror of
https://github.com/moparisthebest/HttpUploadComponent
synced 2024-11-21 16:35:04 -05:00
parent
7f6be7e97a
commit
63124a3026
@ -130,7 +130,10 @@ class HttpHandler(BaseHTTPRequestHandler):
|
||||
try:
|
||||
with open(filename,'rb') as f:
|
||||
self.send_response(200)
|
||||
self.send_header("Content-Type", 'application/octet-stream')
|
||||
mime, _ = mimetypes.guess_type(filename)
|
||||
if mime is None:
|
||||
mime = 'application/octet-stream'
|
||||
self.send_header("Content-Type", mime)
|
||||
self.send_header("Content-Disposition", 'attachment; filename="{}"'.format(os.path.basename(filename)))
|
||||
fs = os.fstat(f.fileno())
|
||||
self.send_header("Content-Length", str(fs.st_size))
|
||||
|
Loading…
Reference in New Issue
Block a user