Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
10answers
565 views

Library or tool to download multiple files in parallell

I'm looking for a python library or a command line tool for downloading multiple files in parallell. My current solution is to download the files sequentially which is slow. I know you can easily ...
2
votes
2answers
431 views

Remote file Download via ASP.NET corrupted file

I am using the code below which I have found on one of the forums to download a file in remote server. it seems it is working. However, the downloaded file is corrupted and I cannot unzip. Do you ...
2
votes
4answers
4k views

HTTP Headers for File Downloads

I've written a PHP script that handles file downloads, determining which file is being requested and setting the proper HTTP headers to trigger the browser to actually download the file (rather than ...
1
vote
5answers
70 views

Is there a full list of mime-types / headers?

I guess I want to ultimately build out a script that will force the browser in a sense to prompt for a download rather than go directly to the file and I want to do it based off of db entries so its ...
1
vote
2answers
90 views

Streaming a large file using PHP

I have a 200MB file that I want to give to a user via download. However, since we want the user to only download this file once, we are doing this: echo ...
1
vote
1answer
283 views

Specify default download folder - possibly with JavaScript?

We're currently in the process of developing a web-based application which will require the downloading of files through the browser. It would be ideal to have these files end up in a specific ...
0
votes
2answers
73 views

Multiple files download in asp.net

I have some scenario in my application where i need to give multiple download functionality. As much i come to know that multiple download is not possible using HTTP.Either we have to use multiple ...
0
votes
0answers
58 views

Android browser gets stuck when downloading files

I have this very specific request that I need to implement. We are working on an application that lets users attach several different type of files (pdf, jpg, png, doc, txt, etc). I need to be able ...
0
votes
1answer
50 views

Retuning empty webpages when writing the contents of wget in Ruby

I am trying to a save a website to an HTML file using Ruby. When I open the file, the website is empty. Currently trying: doc = system("wget -r -l 1 http://google.com") my_file = 'google.html' f = ...
0
votes
0answers
112 views

Rails 3.0.x send_file sending 404 HTML instead of the real file

I have setup a route to handle a specific file download. match '/overview' => "pages#overview", :as => "da_overview" in Pages#overview, I'm sending the file with this line send_file ...
0
votes
0answers
49 views

IIS7 Windows Server 2008 R2 Partial Images

I have a website which is pulling images from a file system on to a web page in a small grid. It pulls in only 4 images at a time so showing a 2 by 2 grid. The images are from around 100 kb to 500 ...
0
votes
1answer
49 views

wget and strange file extensions

All, I am having a bit of trouble grabbing some files that have a strange file structure. What do I mean exactly? ...
0
votes
2answers
814 views

Download file in VB.NET 2010

I have looked almost everywhere on the internet and I cannot find a way to download a file from the internet into a specific folder that works with VB.NET 2010. I would like to download a file called, ...
0
votes
1answer
285 views

php apache and temporary files

I have a web based application which server's content to authenticated users by interacting with a soap server. The soap server has file's which the user's need to be able to download. What is the ...
0
votes
2answers
49 views

Writing file to users giving sporadic error in IE

I have a very interesting issue with only specific IE implementations. I have an ASPX page that is used to write files down to the user, as part of the process the page uses the following code to ...