Questions tagged [download]

Receiving data to a local system from a remote system, or to initiate such a data transfer. Do not use this tag for question asking where to download off-site resource.

17009 questions
4
votes
3 answers

How to package a single-file Windows EXE for downloading?

I have a freeware program to ready share via my website. It consists of a single Win32 executable file. Its only external dependency is the .NET 4.0 client framework. The EXE file is digitally signed with my authenticode signature. How should I…
Eric
  • 11,002
  • 11
  • 54
  • 96
4
votes
2 answers

Electron issue with download attribute

Following my previous question here, I have a desktop application using Electron platform and Javascript where I am converting an HTML5 canvas to JPEG using: Download JPG then, function download(){ var…
rrz0
  • 1,762
  • 3
  • 17
  • 51
4
votes
1 answer

Download big files

I have a file represented as a list of chunks, and the goal is to download all chunks, join and save as a file. Requirements It should work for large files It should be cross-browser solution What I've found... Use JS Array Yes, we can download…
Rashad Ibrahimov
  • 2,791
  • 1
  • 15
  • 33
4
votes
1 answer

file uploading & downloading between server-client

I have an assignment to create a client-server file transfer application. That could be a simple example. I tried the examples given in similar questions in SOF, but they were unable to transfer the file. I'm trying to communicate the client and the…
el nino
  • 129
  • 1
  • 3
  • 10
4
votes
1 answer

How to download files from OneDrive by authenticating using Get-Credentials using power shell?

Here is the code I am using right now, it has been tested working to download a file, however if there is authentication required such as one drive, I am not able to authenticate and download the file. The code I have is here: $CheckFile =…
Sameer Chopra
  • 55
  • 1
  • 5
4
votes
3 answers

Is the iPhone cellular data limit enforced in 3rd party Apps?

I know nothing about iPhone development, but I am drafting a proposal for other people to do the work of creating an App that interfaces with existing systems and data. I need to know if the 20MB cellular data download limit present on all apple…
tobyodavies
  • 23,274
  • 5
  • 37
  • 56
4
votes
1 answer

Observe progress of Data download in Swift?

I need to cache data that I receive from an remote url to a local URL. I am able to do this successfully with: let dataToCache = try Data(contentsOf: url) try dataToCache.write(to: cacheURL) But I was wondering if there is some type of observer I…
Jake G
  • 1,085
  • 7
  • 18
4
votes
3 answers

What are possible reasons that HTML download link is failing?

I created a page for users to download certain files. I used the HTML download link to do this as so: View This worked fine when I was developing on my laptop with WAMP. When I uploaded the…
Alexis Winters
  • 409
  • 3
  • 12
4
votes
3 answers

Unable to view 'Content-Disposition' headers in Angular4 GET response

I am trying to download a pdf file in my Angular app. The server (JBoss) serves a file with Content-type : application/pdf and Content- Disposition header set to attachment. I can see these headers quite well in fiddler response. However in my…
Saurabh Tiwari
  • 3,364
  • 4
  • 31
  • 64
4
votes
4 answers

Python library for downloading MP3 files from youtube

This is my first time on the forum so excuse me for not following conventions. I'm trying to download mp3 files from youtube videos for music. I was wondering if there were any existing python libraries that could do this, by e.g: searching youtube…
M. Choy
  • 174
  • 1
  • 2
  • 9
4
votes
2 answers

Wget images from directory

Hey. I have a public directory that contains a number of JPG images. How can I use WGET in order to download each picture into a specific directory on my local machine? thanks
Skoder
  • 3,613
  • 10
  • 41
  • 73
4
votes
3 answers

download file from asp.net web api

i am trying to download a file (.docx) from asp.net web api. Since i already have a document in the server i set the path to existing one and then i follow something sugested on stackoverflow and do this: docDestination is my path. …
Filipe Costa
  • 465
  • 1
  • 6
  • 26
4
votes
4 answers

How to make eclipse to not download XSD?

Everytime I open file that has xsd declarations (like Seam's components.xml) Eclipse start downloading xsd files, Seam is very modular so it uses 10 xsd files. How to make Eclipse not download those files or download them once(maybe it cant download…
IAdapter
  • 55,820
  • 69
  • 166
  • 236
4
votes
1 answer

Alamofire: file download and validation failure

In my iOS project I'm using Alamofire library to download remote documents (from a server with Basic Auth) in this way: let destination: DownloadRequest.DownloadFileDestination = { _, _ in let documentsURL = FileManager.default.urls(for:…
Giorgio
  • 1,567
  • 4
  • 29
  • 44
4
votes
2 answers

Delphi File Downloader Component

i need a file downloader component for Delphi . may you help me ?
Kermia
  • 3,963
  • 11
  • 56
  • 104
1 2 3
99
100