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
6
votes
1 answer

File transfer through sockets, final size with less bytes

I'm trying to receive some file through sockets in C. But the server sends me 64-byte packets for a 1000000 byte file for example and I get approximately 999902 bytes on the destination file. while ((n = read(sd, buffer_in, BUFSIZE ))) // BUFSIZE =…
Hernán
  • 4,527
  • 2
  • 32
  • 47
6
votes
2 answers

sftp versus SOAP call for file transfer

I have to transfer some files to a third party. We can invent the file format, but want to keep it simple, like CSV. These won't be big files - a few 10s of MB at most and there won't be many - 3 files per night. Our preference for the protocol is…
A_M
  • 7,693
  • 6
  • 33
  • 37
6
votes
3 answers

Simple Java file transfer program problem

I am trying to do a simple file transfer from server to client. It needs to go like this: Client asks for file. Server sends the file to client. Now in the code (down below) (this is the only code I found and it was hard to find) It sends me only…
dan
  • 159
  • 2
  • 2
  • 5
6
votes
1 answer

How to transfer large folders to virtual machines on azure

I want to transfer a large folder (24,4GB) to the virtual machine on Azure. The virtual machine has windows 10 OS. Could anyone suggest ways to transfer files? thanks.
sari
  • 59
  • 1
  • 6
6
votes
2 answers

Background Intelligent Transfer Service In C#

Anyone successfully using this in c# or is there a better alternative to this? Also any good working project that I can look at and get a good feel? most projects i have come across is in C++ and was looking for a C# project
user38230
  • 645
  • 3
  • 13
  • 31
6
votes
1 answer

What is the fastest way to transfer files over high latency and high bandwidth link?

I am trying to transfer files over a high latency and high bandwidth link. Unfortunately when I use rsync my transfer speed utilizes only a fraction of my available bandwidth. My total transfer time takes much longer than what I expected (i.e.…
Trevor Boyd Smith
  • 18,164
  • 32
  • 127
  • 177
6
votes
0 answers

Error playing back video uploaded via PhoneGap FileTransfer

I've been stuck on this issue for awhile and i can't seem to find a solution. What i am trying to achieve is this: Select a video from the phone's library Upload the video to Amazon AWS using a signed PUT url Download the uploaded video and play it…
Prem Raj
  • 849
  • 4
  • 15
6
votes
2 answers

Best way to copy files from Docker volume on remote server to local host?

I've got, My laptop A remote server I can SSH into which has a Docker volume inside of which are some files I'd like to copy to my laptop. What is the best way to copy these files over? Bonus points for using things like rsync, etc.. which are…
marius
  • 1,352
  • 1
  • 13
  • 29
6
votes
1 answer

Cordova File-Transfer download http status 401 - ONLY ANDROID

I'm trying to download file from server in my phonegap cordova application. Function looks like this: fileTransfer.download(uri, localPath, success_callback, error_callback, true, { 'headers': {Connection: "close"}, 'chunkedMode': 'false' }); In my…
arczi
  • 91
  • 1
  • 6
6
votes
0 answers

How to transfer a file from one server to another using node.js

I apologize if this question was asked elsewhere, but I couldn't find a suitable solution to this vexing problem so here's my situation. I have a node.js script that creates an excel document from scratch and everything is working as expected.…
geno_blast
  • 196
  • 1
  • 7
6
votes
2 answers

SerialPort & CCS String Communication

I'm trying to send/receive a string through C#, in C# i just do: SerialPort.WriteLine("A6"); but in CCS, if i try sending a string char after char it does not work at all, neither with ReadLine nor with ReadExisting! This is what i have tried…
Renya Karasuma
  • 1,044
  • 4
  • 11
  • 18
6
votes
2 answers

Android ymodem over bluetooth in Java

Has anyone successfully implemented ymodem in java to send files over bluetooth (SPP)? I had a look at this option and wouldn't mind trying to compile some C/C++ code for Android but I do not want to root the tablet, is it really needed? why?
6
votes
0 answers

How to upload a file on Android to PC over USB

When the Android device is connected to PC over USB, we can transfer files between device and PC easily by Windows Explorer. If I want to upload a file within an Android app, for example, if I click a button, then some files under specific directory…
yinhao
  • 101
  • 1
  • 6
6
votes
1 answer

Open remote Device file manager using bluetooth [Android]

it's been few days i have been searching for this. Goal - what i need is to open the file-manager of the device that is connected with my Android device via bluetooth. i.e Explore file structure from Bluetooth connected device and transfer…
Vj_droider 웃
  • 241
  • 3
  • 8
6
votes
0 answers

During File Transfer using smack in android: java.util.concurrent.ExecutionException: no response from Client

public void ReceiveFile() { ServiceDiscoveryManager sdm = ServiceDiscoveryManager.getInstanceFor(connection); if (sdm == null) { sdm = new ServiceDiscoveryManager(connection); Log.e("service…
Nitish Singla
  • 171
  • 1
  • 8