1,822 questions
0
votes
0
answers
18
views
What happens when uploading a large file from client browser to my Spring boot server if I delay reading the multipart file from input stream?
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 ...
1
vote
0
answers
59
views
How to pass custom IDataObject format via Drag & Drop from Host to VMware Guest?
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: ...
1
vote
0
answers
127
views
gcloud storage cp downloads exceed file size and result in corrupt file (e.g. 12.7GiB for 9.2GiB file)
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 ...
0
votes
1
answer
65
views
Image is being corrupted when sent through cURL [duplicate]
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....
0
votes
0
answers
19
views
Efficient alternatives for PyWebHdfsClient for file transfer to Hadoop Files System
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?
1
vote
0
answers
41
views
Shows loading progress and threads running at the same time in Transfer File socket python
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'
...
-3
votes
1
answer
57
views
Bypass windows and transfer images form hard drive to disk [closed]
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 ...
1
vote
0
answers
86
views
Java reworked 'FTP' File Transfer with Ascii and Binary
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 ...
0
votes
0
answers
111
views
Move large files(in GBs) in parallel
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'...
0
votes
1
answer
1k
views
Copy files from One S3 Bucket to another S3 Bucket
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 ...
0
votes
0
answers
63
views
How can I run this ftp_get script?
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 ...
0
votes
2
answers
77
views
Vagrant transfer file from Guest VM to another Guest VM
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 ...
0
votes
1
answer
75
views
File transfer (File.Move() ) unexpected behavior [duplicate]
Im trying to move a file from one location to another.
private void SendFileToDestination()
{
string file = "HATKANOT_BETIHOT_231230.txt";
string ...
0
votes
1
answer
429
views
rz file transfer is asking several times to upload file into Linux server from Mac
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 ...
0
votes
1
answer
65
views
Multithreaded file transfer via socket in java
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 ...
0
votes
1
answer
423
views
Design pattern for supporting transferring data from multiple sources to destinations
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. ...
3
votes
1
answer
1k
views
How to effeciently Serve Large Files using Actix Web for Rust
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 ...
0
votes
0
answers
122
views
How can I use Google APIs in Python to move a file from one user's Google Drive folder to another user's folder?
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 ...
0
votes
0
answers
114
views
Is there any way we can transfer files from AWS Cloud to any local system?
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 ...
1
vote
1
answer
306
views
Send image to browser as a PHP post response
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
...
0
votes
1
answer
662
views
file transfer using sftp fails with error ETAdebug3: Sent message SSH2_FXP_WRITE I:12 O:0 S:32768
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 ...
0
votes
0
answers
465
views
How to use Minicom programmatically without console input?
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 ...
0
votes
1
answer
1k
views
Copy File from Box.com to AWS S3 Bucket
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 ...
0
votes
1
answer
1k
views
How to synchronize a list of files from one Windows Remote Server to another via Ansible?
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 ...
0
votes
1
answer
209
views
Python pysftp fail with IOError [duplicate]
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....