A file download occurs on a network when a client computer requests a file to be sent to it from a server.

learn more… | top users | synonyms (1)

70
votes
7answers
87k views

How to download and save a file from Internet using Java

There is an online file (such as http://www.example.com/information.asp) I need to grab and save to a directory. I know there are several methods for grabbing and reading online files (URLs) ...
65
votes
8answers
25k views

Having Django serve downloadable files

I want users on the site to be able to download files whose paths are obscured so they cannot be directly downloaded. For instance, I'd like the URL to be something like this, ...
59
votes
5answers
46k views

How do I ZIP a file in C#, using no 3rd-party APIs?

I'm pretty sure this is not a duplicate so bear with me for just a minute. How can I programatically (C#) ZIP a file (in Windows) without using any third party libraries? I need a native windows call ...
52
votes
7answers
21k views

How do I code for PDF downloads?

In WebForms, I would normally have code like this to download a PDF: Response.Clear() Response.ClearHeaders() ''# Send the file to the output stream Response.Buffer = True ...
38
votes
5answers
27k views

How do I download a binary file over HTTP?

How do I download and save a binary file over HTTP using Ruby? The URL is http://somedomain.net/flv/sample/sample.flv. I am on the Windows platform and I would prefer not to run any external ...
33
votes
3answers
75k views

Download File Using Javascript/jQuery

I have a very similar requirement specified here http://stackoverflow.com/questions/1296085/download-file-using-jquery need to start download a file when i manually calls $('a#someID').click(); But ...
29
votes
4answers
44k views

Download File to server from URL

Well, this one seems quite simple, and it is. All you have to do to download a file to your server is: file_put_contents("Tmpfile.zip", file_get_contents("http://someurl/file.zip")); Only there is ...
28
votes
6answers
20k views

How to return PDF to browser in MVC?

I have this demo code for iTextSharp Document document = new Document(); try { PdfWriter.GetInstance(document, new FileStream("Chap0101.pdf", FileMode.Create)); ...
23
votes
9answers
2k views

What are the benefits of showing “Your download will begin in x seconds”?

Are there technological benefits when presenting a "download page" that gives a message like the following? Your download should automatically begin in a few seconds, but if not, click here. ...
20
votes
2answers
11k views

ASP.NET MVC: returning plaintext file to download from controller method

Consider the need to return a plain-text file from a controller method back to the caller. The idea is to have the file downloaded, rather than viewed as plaintext in the browser. I have the ...
17
votes
2answers
19k views

How do I transfer an image from its URL to the SD card?

How can I save an images to the SD card that I retrieve from the image's URL?
17
votes
2answers
5k views

How to know the size of a file before downloading it?

I have to download a file and I'm using this code, which is basically an AsyncTask that is meant to update a progress bar. But, since I don't know what's the file size I've been having to use the ...
15
votes
4answers
9k views

Resume http file download in java

URL url = new URL("http://download.thinkbroadband.com/20MB.zip"); URLConnection connection = url.openConnection(); File fileThatExists = new File(path); OutputStream output = new ...
14
votes
4answers
20k views

Force download of a file on web server - ASP .NET C#

I need to force the initiation of download of a .sql file, when user clicks a button in my ASP .NET (C#) based web application. As in, when the button is clicked, a save as dialog should open at the ...
13
votes
6answers
25k views

Forcing to download a file using PHP

I have a CSV file on my server, if a user clicks on a link it should download, but instead it opens up in my browser window. My code looks as follows <a href="files/csv/example/example.csv" ...
13
votes
2answers
10k views

How to stream a file download in a JSF backing bean?

Apache MyFaces Trinidad has component <tr:fileDownloadActionListener>. I'm having no problems with using it like it is described in docs. Is there any way of simulating same behavior as this tag ...
13
votes
10answers
2k views

Library or tool to download multiple files in parallel [closed]

I'm looking for a python library or a command line tool for downloading multiple files in parallel. My current solution is to download the files sequentially which is slow. I know you can easily write ...
11
votes
4answers
9k views

Downloading a large file using curl

I need to download remote file using curl. Here's the sample code I have: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $st = curl_exec($ch); ...
11
votes
1answer
8k views

Download a File from internet programatically with an Progress event using Delphi and Indy

I need a way to download a file from the Internet using Delphi via HTTP, Wich include an Progress event , I'm looking for a method wich uses the Indy components. I am using Delphi 7. Thanks in ...
11
votes
1answer
2k views

Django - Understanding X-Sendfile

I've been doing some research regarding file downloads with access control, using Django. My goal is to completely block access to a file, except when accessed by a specific user. I've read that when ...
11
votes
3answers
9k views

Post Back does not work after writing files to response in ASP.NET

What I have? I have a ASP.NET page which allows the user to download file a on a button click. User can select the file he wants from a list of available files (RadioButtonList) and clicks on ...
10
votes
1answer
8k views

Resolving “this operation requires IIS integration pipeline mode” in ASP.net MVC2

I'm developing an ASP.net MVC2 application, and implement an export to .csv controller action, but when I add the headers to force the download, The following appears in the debugger: "this ...
10
votes
2answers
5k views

how to resume an interrupted download - part 2

This is a continuation of my previous question which I posted when I wasn't a registered user. As a refresher, I'm trying to resume the downloading of a large file from my Yahoo! web site server when ...
10
votes
5answers
3k views

Download textarea contents as a file using only Javascript (no server-side)

I am being asked to make a "download" button that downloads the contents of a textarea on the same page as a file, with the browser's "Save As..." dialog showing up. Copy/paste would do the job just ...
10
votes
1answer
1k views

ie9 hangs when streaming file to browser

I use the following to stream a file (usually Excel or PDF) to the browser. It operates by setting the location of a hidden iFrame to a download handler which contains the code. t works fine in ...
9
votes
3answers
5k views

Flask/Werkzeug how to attach HTTP content-length header to file download

I am using Flask (based on Werkzeug) which uses Python. The user can download a file, I'm using the send_from_directory-function. However when actually downloading the file, the HTTP header ...
9
votes
4answers
4k views

Get filename while downloading it

We are providing files that are saved in our database and the only way to retrieve them is by going by their id as in: www.AwesomeURL.com/AwesomeSite.aspx?requestedFileId=23 Everything is working ...
9
votes
3answers
3k views

Pause/Resume downloads in Objective-C

Alright. Hopefully this will be my last post about the download manager I am writing in Objective-C. Everything seems to work well except the pause/resume functionality. My issue is that when a ...
9
votes
2answers
1k views

Download file with progress meter in VBA

I've found numerous examples for doing this in several languages, but none that are VBA specific. This question, How to download multiple files in VB6 with progress bar?, addresses three different ...
9
votes
3answers
8k views

How to block downloads in .NET WebBrowser control?

I need to prevent the .NET WebBrowser control from showing any "Do you want to open or save this file?" and "Save As" dialogs. Instead, I want to display a message box telling users that file ...
8
votes
3answers
4k views

How to force download of a file?

I'm looking to add a "Download this File" function below every video on one of my sites. I need to force the user to download the file, instead of just linking to it, since that begins playing a file ...
8
votes
2answers
5k views

How to create a dynamic file + link for download in Javascript?

Typically, HTML pages can have link to documents (PDF, etc...) which can be downloaded from the server. Assuming a Javascript enabled webpage, is it possible to dynamically create a text document ...
8
votes
3answers
180 views

Requests with multiple connections

I use the Python Requests library to download a big file, e.g.: r = requests.get("http://bigfile.com/bigfile.bin") content = r.content The big file downloads at +- 30 Kb per second, which is a bit ...
8
votes
6answers
685 views

What is the best way to handle this: large download via PHP + slow connection from client = script timeout before file is completely downloaded

My client wanted a way to offer downloads to users, but only after they fill out a registration form (basically name and email). An email is sent to the user with the links for the downloadable ...
7
votes
2answers
1k views

google app engine python download file

I am trying to figure out a way where I can create a tab-delimited file containing data from user-defined fields and allow the user to download that file on google app engine. The sandbox environment ...
7
votes
3answers
14k views

How do I download a file using Perl?

I'm running perl on windows XP and I need to download a file from the following URL. http://marinetraffic2.aegean.gr/ais/getkml.aspx Any ideas on how I should do this? I have attempted using ...
7
votes
3answers
907 views

How do I prevent public downloads of files using php?

I have a script that allows only authorised users to upload files to a certain folder. However I do not know how to prevent people from downloading freely without login. I need the solution in php. ...
7
votes
2answers
2k views

R Package Download and Usage Statistics

I have submitted a package to CRAN and am interested in how much it has been used. Is there a way to get the number of downloads from the CRAN website?
7
votes
2answers
6k views

How to use Wicket's DownloadLink with a file generated on the fly?

DownloadLink is nice and handy for creating a button/link for downloading a file, along these lines: add(new DownloadLink("downloadButton", getReportFile(), "report.pdf")); and <input ...
7
votes
1answer
4k views

How to download a file from rails application

I can't seem to find a simple and clear answer to this problem anywhere! Everything seems either outdated or incomplete! I just want the user to be able to click on a link or button and download a ...
7
votes
2answers
7k views

How to download a text file with iPhone SDK?

I am sort of new to developing view-based iPhone applications, and I need to download this "txt" file off the internet and save it into the documents folder of the app. Can anyone show me simply how I ...
7
votes
1answer
9k views

How to use GWT when downloading Files with a Servlet?

I am creating a simple project that will allow me to upload and download files using gwt. i am having trouble with the downloading of files that are on my server. For the file upload i used ...
7
votes
4answers
7k views

How to deliver big files in ASP.NET Response?

I am not looking for any alternative of streaming file contents from database, indeed I am looking for root of the problem, this was running file till IIS 6 where we ran our app in classic ...
7
votes
3answers
5k views

Download a file using Ajax

I have written to make a zip file , now I want to trigger that servlet using Ajax and prompt the download dialog to the user , i can trigger the servlet but i dont know how to get the save dialog. ...
7
votes
1answer
3k views

Download file using urllib in Python with the wget -c feature

I am programming a software in Python to download HTTP PDF from a database. Sometimes the download stop with this message : retrieval incomplete: got only 3617232 out of 10689634 bytes How can I ...
7
votes
4answers
274 views

How to protect website resource from downloading?

Like this .mp3,you can listen online: http://d1.s.hjfile.cn/podcast/20100222/2010022290717093_217.mp3 But I don't want to allow downloading. How to approach that?
7
votes
2answers
2k views

how to programmatically download a public Google Drive file?

I have a backend server that has to download a file on Google Drive that has been shared to public by the owner. Our clients are emailing us the link and we get the link from the email -- no UI is ...
7
votes
2answers
2k views

Asp.Net download file error when choosing 'Open' in IE9 [closed]

I am using Response to have my application open up a Word Document for the user. If the user chooses to save the file, it saves it and the file looks how it should when you open it. If the user ...
7
votes
1answer
303 views

HTTP Async Downloader with auto-resume on error

I have an async downloader in my app, but sometimes the connection is lost, especially when I'm on a mobile connection and if the file is a large one (>10 MB). Is there a way to catch when a download ...
6
votes
3answers
4k views

How do I copy a remote image in python?

I need to copy a remote image (for example http://site.com/image.jpg) to my server. Is this possible? How do you verify that this is indeed an image?

1 2 3 4 5 42