10
votes
5answers
1k 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 …
5
votes
6answers
3k 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 …
5
votes
5answers
740 views
ASP.NET MVC - 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
…
4
votes
3answers
85 views
How can I provide a temp file download using mod_perl and CGI::Application?
My web app runs on Apache mod_perl using CGI::Application. I want to provide a download of a generated file. In the past (before we were using mod_perl and CGI::App) I just spooled out a csv file to …
3
votes
2answers
121 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?
3
votes
2answers
52 views
Is there a good online library of different video formats to use to test my FFMPEG installation?
I want to check that users will be able to encode the main video formats using FFMPEG running on a server. So far most of the videos I have tried have worked but want to find out where things may fall …
3
votes
3answers
149 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?
3
votes
2answers
140 views
How do I update a shared file on IIS and ASP.NET?
We're replacing an "old" web application (the original CodeCentral was written over 10 years ago, now running at http://cc.embarcadero.com with over 12.7 million served) that uses a file based cache …
3
votes
7answers
198 views
Tool for downloading entire website
Can anyone recommend a tool for downloading an entire website. It is my own organisation's website, however I can't get ftp access as important people are on holiday.
I would like to download the …
2
votes
2answers
79 views
Download manager in Java
I need to several some huge files (several gigs) from Java via FTP/HTTP. Is there a ready library (java / command line tool) to facilitate the download? Some obvious requirements are:
…
2
votes
4answers
148 views
Multipart Downloading in C#?
Please excuse my ignorance on the subject.
I would like to write an application in C# that can download files off a server the same way DownThemAll does. DownThemAll seems to open four connections to …
2
votes
2answers
127 views
Core data, file downloads, and thread-safety
What's the preferred approach for constantly sharing data across threads when using Core Data? I am downloading a large file and want to show progress of the download in a UIProgressBar. The actual …
2
votes
2answers
207 views
Winsock downloading files - vb6
Hi,
I'm trying to use Winsock to download some files and save them.
In my case, I have a MSHFlexGrid with 2 columns: one with URL and the other with the "path+filename" (where the file is going to be …
2
votes
1answer
231 views
NSData initWithContentsOfURL: options: errorPtr: delegate object?
Is there a way to assign some sort of delegate object when
[[NSData alloc] initWithContentsOfUrl:... options:... errorPtr:...]
is called so that I can monitor percentage complete of a download or …
2
votes
3answers
538 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, …
