Questions tagged [file-transfer]

Is a generic term for the act of transmitting files over a computer network or the Internet.

Is a generic term for the act of transmitting files over a computer network or the Internet. There are numerous ways and protocols to transfer files over a network. Computers which provide a file transfer service are often called file servers. Depending on the client's perspective, the data transfer can be called uploading or downloading.

1842 questions
0
votes
2 answers

Python - Calculate file transfer time

I am fumbling my way through learning python and need some help getting started on some things. For this project I need to create a program that calculates file transfer time. I need to prompt the user for a file size in megabytes. I also need to…
Sam Dover
  • 1
  • 1
  • 1
0
votes
1 answer

Getting garbage characters after transfering file contents via UDP

Develop a client/server based application using UDP to execute the program at remote server. i.e. the client sends the executable file to the server, server executes the file , stores the result in a file and sends back to the client. I have coded 2…
APD
  • 159
  • 2
  • 12
0
votes
1 answer

Java: A client/server file transfer (incomplete files)

I am building an application that will send file across the network through sockets. There are 2 programs. Server and Client each have two classes Download and Upload. public class Download implements Runnable{ public ServerSocket server; …
0
votes
1 answer

How to send a file (move/copy) from windows computer to server using java

I want to copy some files from my computer to a server-location. My computer is running on Windows-7. My files are stored in : C:\Transfer\ The server location where I have to transfer the files is : \\server1\myname\TransferData\ I want to do…
sudhishkr
  • 3,318
  • 5
  • 33
  • 55
0
votes
0 answers

How to download files stored in the filesystem with django

I am developing an application where the user can upload some files to the server. To upload the files I use this model and this view model class Documentacion(models.Model): id_doc = models.AutoField(primary_key=True) id_proceso =…
Joseleg
  • 393
  • 9
  • 35
0
votes
1 answer

Android copy file APK to real device through tftp ( use Window)

My task is copy file apk to my device, and install it. this device only have board and screen. Can not copy file to this device like tranfer file through USB . I think may be some one have done it already. Please teach me how to solve it. Ah, I am…
famfamfam
  • 396
  • 3
  • 8
  • 31
0
votes
1 answer

GCDWebServer handlers for background file transfer (Not GCDWebUploader)

Has anybody already tried to implement an handler for GET requests (the same question for POST method) without using the included (and cool) GCDWebUploader? I need the server to respond to a GET request http://local/download/filename.ext uploading…
Lookaji
  • 1,023
  • 10
  • 21
0
votes
1 answer

File upload shows error code 3 on phonegap windows build

I have created and app in windows and android using the phonegap+jquery mobile. I have a file upload function which is working correctly on android build but in windows build it is showing an error code 3(FileTransferError.CONNECTION_ERR). My code…
Amesh
  • 177
  • 2
  • 12
0
votes
2 answers

Stream.CopyTo - How do I get the sent Bytes?

I try to get the transfer speed at a ftp-upload, but I don't know where I should "get" it: Code-Snippet: FtpWebRequest request = (FtpWebRequest)WebRequest.Create(job.GetDestinationFolder() + "\\" + fileOnlyName); request.Method =…
Ismoh
  • 1,074
  • 2
  • 12
  • 35
0
votes
1 answer

gcdasyncsocket background file transfer

Having two devices that need to keep transferring data while in background or in LockScreen. The main resource about backgrounding is available on…
Lookaji
  • 1,023
  • 10
  • 21
0
votes
2 answers

synchronize udp broadcast file transfer

I'm currently working on a udp socket program that broadcasts over subnet directed address (192.168.0.255). I have an image file in the server and I will send it to 3 clients. Everything works fine, but the only problem is the receiving client…
user3434206
  • 21
  • 1
  • 3
0
votes
1 answer

Transfer NuGet Package from one computer to another

I am building a WPF application now but I am completely new to VS 2013. One of my friend wants to work on this project with me so I copied my project directory to his computer. The project doesn't work on his computer because there is a package…
KField
  • 151
  • 1
  • 4
  • 13
0
votes
1 answer

Host="null" in file transfer xmpp

I received this packet from client:
Manjeet Brar
  • 914
  • 1
  • 9
  • 27
0
votes
1 answer

Phonegap - HTML does not display image from storage

I'm using FileTransfer plugin to download an image from a remote server. The image is stored in "storage/emulated/0/" - using the following code: function downloadFile(fileDownloadName){ //console.log('downloadFile'); …
acg
  • 503
  • 3
  • 11
  • 27
0
votes
1 answer

a EXC_BAD_ACCESS (CODE=EXC_i386_GPFT) error in CDVCommandDelegateImpl.m in the evalJsHelper2 method

I am getting a EXC_BAD_ACCESS (CODE=EXC_i386_GPFT) error in CDVCommandDelegateImpl.m in the evalJsHelper2 in the following code line: NSString* commandsJSON = [_viewController.webView stringByEvaluatingJavaScriptFromString:js]; this error occurs…
MeMTn
  • 93
  • 1
  • 13
1 2 3
99
100