Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
18 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
1 vote
0 answers
59 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
1 vote
0 answers
127 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
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
0 votes
0 answers
19 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
41 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
-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
1 vote
0 answers
86 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
111 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
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
63 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
0 votes
2 answers
77 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
75 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
0 votes
1 answer
429 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
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
1 answer
423 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
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
0 votes
0 answers
122 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
0 votes
0 answers
114 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
1 vote
1 answer
306 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
662 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
0 votes
0 answers
465 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
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
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
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
2 3 4 5
37