-
-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Download file only after user confirm it #938
Comments
Even in Firefox, file starts downloading as soon as the dialog appears. If you know one program that doesn't do that, you can tell us. But it always has been the same for any program that downloads files. |
When you initiate a file download through the browser, the server sends the file in the body of the HTTP response. The server may include headers that provide additional information about how the browser should handle the file, such as whether to prompt the user to save it or open it directly. So there is no additional request which could be used after confirming. Chromium doesn't know if pausing is supported since it doesn't support multipart downloading. |
have not thought about this side of issue... 💥 ... wait, what if the downloading will be "hanged", like it happens on moving, but only the current downloading with unconfirmed location? Abusing some part of issue may solve the whole issue, sure if it possible. Most of the downloads(browser downloads) done over TCP where the receiving confirm is mandatory. Long delay probably will cause rejecting, but few secs to specify location should be ok (up to 20 by default, if i'm correct) |
The issue
Chromium starts downloading file automatically even you have set
Ask where to save each file before downloading
. Downloading starts in the same moment asSave as
dialog appear. While generally it's optimization of the time wasting, there can be certain cases when it's unwantedSolution
Not think this will often changes so flag should be enough, but if on-the-fly solution/setting possible will prefer it. Anyway it should prevents downloading until user specify location and press the
Save
button in theSave as
dialogAlternative solution
only for 3rd case - move the file after download finished. yes, it can be done manually, but then you need to track file downloads
Additional context
User-case time 😄
From time to time i visit no-internet-area for a long time, so i load some media to pretty cheap and slow flash drive (it's intended properties). Problem with auto-downloading is that, when the Save button pressed, browser start moving downloaded part of the media to specified location, and, while do so, it pause(or rather hang) all downloads until moving finished. Now time optimization become a time wasting x drive' snail-rating x downloads count, especially when loading more than one file to the snail-drive.
The text was updated successfully, but these errors were encountered: