Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
39 views

Context: I am trying to build a Spring Boot application and have exposed a REST api endpoint to upload files(as large as 1 GB). Question: Since the data transfer for a multipart file happens in chunks ...
Aakash_Deep's user avatar
Advice
0 votes
0 replies
12 views

I have a Docker Swarm setup where a worker node needs to copy files to the master node. The worker is running on Windows via WSL, and the master is an Ubuntu server. Both nodes are connected through a ...
Rodrigo's user avatar
  • 33
1 vote
0 answers
63 views

I'm facing an issue with drag & drop between a host system and a VMware guest VM, where my application's custom data format gets lost during the process. My setup: Host OS: Windows 11 Guest OS: ...
Tobias's user avatar
  • 11
0 votes
2 answers
63 views

Is it possible to transfer data between two devices with different operating systems on the same network (without internet)?
Rumeysa Ağıl's user avatar
1 vote
0 answers
133 views

I’m trying to download a .tar.gz file from a public Google Cloud Storage bucket using the gcloud CLI tool. Here’s the command I use: gcloud storage cp gs://my-bucket/large-file.tar.gz ./ The file is ...
Maximilian Burr's user avatar
0 votes
1 answer
80 views

I have implemented an API /transferFile that downloads a file from a server and writes it to a specific location. To ensure the file transfer runs in the separate thread, I am using ExecutorService ...
Amit J.'s user avatar
  • 38
0 votes
1 answer
65 views

I'm trying to use the following code to transfer an image file from my website to a Rackspace Cloud Files container: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://storage101.dfw1....
Brent Curry's user avatar
1 vote
0 answers
98 views

I'm part of a team working on a project where we have a small Android 12 device acting as an HID device for a host Android 12 device. The idea is that they press a button on the smaller device and ...
John Bothner's user avatar
0 votes
0 answers
22 views

I am trying to transfer a file from local server to a remote Hadoop file system using PyWebHdfsClient. Are there any more efficient alternatives for transferring files to HDFS?
SeeRam's user avatar
  • 33
1 vote
0 answers
151 views

I already have a Server/Client application, clients connect to the server via a token, server verifies the token and only then server proceeds to send files to the client(s). However, when I try to ...
nworder1's user avatar
1 vote
0 answers
45 views

i have 2 problems that need help below. Transfer File socket python and MultiThreading # server.py import os import socket import threading RESOURCES_SERVER = 'resources' TEXT_FILE = 'text.txt' ...
hilo's user avatar
  • 11
1 vote
0 answers
254 views

I'm using python + winrm to get files from a windows server. The code runs fine but slowly. It can only get about 10GB per day by this way. If I copy files through remote desktop(mstsc.exe or Other ...
vassiliev's user avatar
  • 920
-3 votes
1 answer
57 views

I have an old work computer that I cannot log in to because I do not know the password. The computer has Windows 10 installed. I was wondering if there is any way to transfer data from my hard drive ...
Markus helbæk's user avatar
0 votes
0 answers
61 views

I'm writing online-library using Vue and Yii2. I need to somehow send books info and related pics. I tried to send at least pictures but in postman i see that response contains only 1 picture public ...
Tokisaki Kurumi's user avatar
1 vote
0 answers
89 views

I'm having to implement a basic file transfer system in Java, one that accepts commands from the client. Unfortunately, the class this was for has so far been more about networking concepts as opposed ...
Jackson Allen's user avatar
0 votes
0 answers
106 views

When attempting to transfer files from an external server to a Google Cloud Storage (GCS) bucket using the provided code snippet (code to be executed on Google Cloud Functions), the files are ...
Dev Patel's user avatar
0 votes
0 answers
112 views

I have a use case, where we need to move large files from openshift to another server. Each files are in GBs. Total size of files were few Terabytes. I'm using oc rsync/cp feature to move files.But it'...
Cdr's user avatar
  • 591
0 votes
0 answers
156 views

I am writing a python script to check how long the file is staying in the SFTP. Every minute the script will run and it'll check if the file is there or not. Here's a part of the script checking the ...
Vaishant Sah's user avatar
0 votes
1 answer
1k views

I have to migrate about 20 TB data from One S3 bucket to another S3 bucket where both are in separate accounts with separate vendors and I am not the owner in either of them. I have been provided ...
Sailesh Parajuli's user avatar
0 votes
0 answers
45 views

I need to create a Python UDP Utility for Linux, but I can't optimize for packet loss simulations. It working great and actually sending the file, but its working really slow. This is my code: client-...
Dr.Labradoor's user avatar
0 votes
0 answers
67 views

I can run PHP scripts using a browser and a VPS I have through Ionos. There is one script, however, that I don't know how to run. It uses the ftp_get command to download a file from my server and ...
LuisM's user avatar
  • 1
1 vote
0 answers
452 views

I want to run a SLURM job on a remote cluster to analyze sensitive data stored locally (/data/mydata.csv). The job is defined in job.sh, which executes an analysis script (r_script.R) for data ...
jay.sf's user avatar
  • 76.3k
0 votes
2 answers
81 views

Is there any option to transfer a simple file from one Vagrant VM to another Vagrant VM? I assigned static IP to both of the VMs, watched for open SSH ports and tried to use scp command to transfer ...
Caveira's user avatar
  • 61
0 votes
1 answer
163 views

I am trying to send some data across a network in a JSON file. This file will be updated periodically (every 10 seconds) and I need to read this and make it available in my application. Currently, i ...
cappo's user avatar
  • 19
0 votes
1 answer
77 views

Im trying to move a file from one location to another. private void SendFileToDestination() { string file = "HATKANOT_BETIHOT_231230.txt"; string ...
Gal Mor's user avatar
  • 11
1 vote
0 answers
76 views

I have an Excel 2013 xls file on my server and I would like it to download to my local Windows download directory. $filename = 'test.xls'; $file_path = $filename; if (file_exists($file_path)) { /...
Imbi's user avatar
  • 23
0 votes
1 answer
438 views

I'm using the lrzsz tool to transfer files between a Mac and a Linux server. Using sz works fine, but when I use rz in the Linux terminal for the first time, it opens the Mac file upload UI. After the ...
Mukha's user avatar
  • 313
0 votes
1 answer
239 views

I have a WinSCP script which copies file over FTP protocol. But here my password is visible. Is there any option to make this password encrypted so that if anyone open the script couldn't see the ...
goldenbutter's user avatar
0 votes
1 answer
65 views

I want to receive chunks of a file from multi-thread and write in orderly. I have a server file on one system that send a file into 4 chunks through 4 thread now i have a client program on another ...
Vimal Arjun's user avatar
0 votes
2 answers
93 views

I'm trying to do file transferring via sockets between two machines. I don't have any problems with transferring but I want to be able to resume inputting another command in my server after the ...
cihan's user avatar
  • 3
0 votes
1 answer
426 views

I am working on a small program - the main feature of the program it to 'transfer' 'data' from one 'place' to another, and also record stats (like timestamps, success or not, etc.) to sqlite db. ...
hongweiy's user avatar
1 vote
1 answer
976 views

I am tearing my hair out over this one. There seem to be 1000 suggestions to do what I want, but most of them are obsolete, or don't work. The microsoft docs are worse than useless, don't explain the ...
Ben McIntyre's user avatar
  • 1,988
3 votes
1 answer
1k views

Here is my scenario, I have written an API endpoint using actix-web and rust which is running inside a Linux VM. When the API is hit, it runs a job and creates a zip file. This zip file is around 3.5 ...
OddlyGhost's user avatar
-2 votes
1 answer
348 views

I am trying to copy some files from one folder to the other using JavaScript and NodeJS. I am reading the file names from a text file to achieve this but only the last file is getting transferred. ...
Chayan's user avatar
  • 9
0 votes
0 answers
126 views

I'm trying to write a Python script that allows me to move a file from a folder in my Google Drive to a folder in another user's Google Drive using Google APIs. I've already set up OAuth2 ...
CHIRAQA's user avatar
  • 33
-1 votes
2 answers
1k views

I am trying to move files into a backup folder which is on the same directory level as the folder where the files are stored. The downloading of the file into a local directory and uploading the file ...
Jolin's user avatar
  • 27
0 votes
0 answers
116 views

I have my files residing in AWS S3 bucket. I want to transfer them to a folder in an server. Can we use AWS Transfer family for this? In the documentation, it is mentioned that AWS transfer family can ...
user22387009's user avatar
-3 votes
1 answer
56 views

I'm building the communication module of an application on c++, I'm using windows socket to make the connection and the send() function to send files. When I try to send an image, it comes broken in ...
iumonyty's user avatar
1 vote
1 answer
307 views

So, I'm making a post request with CURL: <?php $url = 'http://url/to/site'; $data = array( "tk" => $_GET["tk"] ); $ch = curl_init($url); //seteamos la petición ...
Ariees Andromeda's user avatar
0 votes
1 answer
174 views

Is transferring a file from a link to Google Drive using a custom script or programming solution feasible? I have a link which when clicked downloads a file. I want to transfer the file to drive ...
phukon's user avatar
  • 51
0 votes
1 answer
665 views

We are trying to transfer the file from sftp server to the remote server. The file transfer works well when we transfer small-size (2-5MB) files. But, the file transfer fails intermittently when we ...
Jagdish0886's user avatar
1 vote
0 answers
574 views

I am moving a large number of files between GCP VM instances using gcloud compute scp. If I were moving the files from a storage bucket, I would use gsutil -m cp, with the -m flag allowing me to ...
sdg's user avatar
  • 462
0 votes
0 answers
469 views

is there a way to use the Minicom functions in a python script? I need to transfer files via serial port on a raspberry pi 4 to another raspberry pi 4. Minicom offers this functionality and it works ...
Michael's user avatar
  • 13
0 votes
1 answer
484 views

I would want to transfer file(copy) within a same shared network within 5mbps using the method below im unable tot get 5mbps consistently it give me for example 12mpbs, 10mpbs then drop to 0mbps later ...
randompersonhehe's user avatar
0 votes
1 answer
1k views

I have a ~50,000 I need to upload to an S3 bucket. These files already exist in Box.com Is there a way to write from Box to AWS using the AWSCLI? It just seems like a wasted step to download from ...
Ian Horn's user avatar
0 votes
0 answers
159 views

In our project we want to exchange every type of file (csv,txt,pdf,xlsx,...) between two raspberry pi using the serial port. For example: We want to send a .pdf file from the first raspberry pi to the ...
Michael's user avatar
  • 13
0 votes
1 answer
1k views

I am currently trying to transmit a list of files from one Windows Remote Server to another Windows Remote Server initiated from a third Linux Control Machine. My current implementation is as follows ...
Bloke's user avatar
  • 51
0 votes
0 answers
55 views

I'm a beginner in C++, and I'm building a program to transfer files and images. I have a simple code to send pictures over TCP taken from Sending Picture via TCP. But my images came broken, with ...
user avatar
0 votes
1 answer
209 views

I'm fairly new to Python and migrating an already running script to a new machine. The key part of the script is to ftp a file to internal file server. A snippet of code is: import pysftp with pysftp....
KS_23's user avatar
  • 11
1 vote
1 answer
361 views

I have a pre sign URL from a client, I want to store the file in my AWS S3 bucket from requests import get resp = get(url=[Presign URL], timeout=9000) s3_client.upload_fileobj(resp.content, "my-...
Abhishek Patil's user avatar

1
2 3 4 5
37