5,186 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-2
votes
2
answers
97
views
Application crashes after SFTP operation, GDB & Valgrind show double-free in MySQL result cleanup [closed]
I’m dealing with a repeated crash in a custom Linux application and hoping to get advice or confirmation or suggestion on the root cause.
The application connects to an SFTP server, downloads a daily ...
4
votes
1
answer
82
views
WinSCP PowerShell script with mask downloads files but creates empty folders
I am using a PowerShell script using the module WinSCP to download files from a SFTP server.
I am using a file mask so I only download files matching *.zip which have been added today. The SFTP folder ...
1
vote
1
answer
114
views
ConnectionResetError when creating paramiko SFTP connection using SSHClient but not Transport
I have successfully used this code to connect to a few different SFTP servers:
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname, port=port, ...
2
votes
1
answer
56
views
Closing file after SFTP upload still makes client retry the same upload in `close` sftp_response from paramiko
I run a custom SFTP Server using Paramiko that receives video files from NVR cameras and uploads it to a cloud storage. The flow is simple: The client (NVR) connects and authenticates, we write the ...
1
vote
0
answers
59
views
Cannot copy file to another folder using Renci.SshNet.Sftp ("No such File" Error)
I need to copy and rename a file from one folder of an SFTP server to another.
I'm using Renci.SshNet.Sftp to perform the copy task.
When I copy to the same folder, it works perfectly.
But when I set ...
0
votes
1
answer
97
views
AsyncSSH Basic SFTP Server permission error - connection fails
I'm trying to implement a very basic sftp server in python with asyncssh to be used during a unittest. I want to use a custom path to set the root of the sftp server and it would be better to set a ...
0
votes
0
answers
99
views
JSCH SFTP upload error: throwStatusError - Status code 4, but no message shown
I'm trying to upload a file to an SFTP server using the JSCH library in Java, but I'm getting a generic error with status code 4, and no descriptive message.
com.jcraft.jsch.SftpException: 4:
at com....
2
votes
0
answers
106
views
AWS Transfer Family: start_remote_delete not recognized in boto3 Lambda function (v1.35.92)
I'm using an AWS Lambda function written in Python to transfer files from an external SFTP server to an S3 bucket via AWS Transfer Family. The file transfer works perfectly using start_file_transfer.
...
0
votes
0
answers
52
views
How to move a file from an SFTP server to an S3 bucket using the AWS SDK?
I'm working on an AWS Lambda project where we need to process some files on an SFTP server. Files that have been successfully processed need to be moved to an S3 bucket for temporary storage. We have ...
2
votes
1
answer
81
views
Python fabric api recursive put
I am having difficulty understanding how to use the put method to transfer a directory recursively.
I am coming from using pysftp and using the put_r method.
I have a local path and a remote path and ...
0
votes
0
answers
74
views
JSchException: Authentication failure [duplicate]
I am getting an error when trying to establish connection to a remote server using jcraft.
com.jcraft.jsch.JSchException: Auth fail
at com.jcraft.jsch.Session.connect(Session.java:519)
...
-1
votes
1
answer
114
views
Apache Camel / JSch permission denied for SFTP upload
I'm using Apache Camel 3.4.10 to upload some files to an SFTP server and, since almost one week, this is not working anymore and below there is the output I get:
2025年05月23日 12:02:08,890 WARN [org....
0
votes
2
answers
200
views
How to check with ADF if the files located in the SFTP server are also in the Azure storage account and if not to copy the files missing
I'm new to Azure Data Factory (ADF), and my company has asked me to design a pipeline that checks whether files from an SFTP server exist in an Azure Storage Account. If any files are missing, they ...
0
votes
0
answers
87
views
sFTP connection failure
I wrote this php script to fetch a file with sftp:
if (!is_writable(sys_get_temp_dir())) {
mylogger("Can't write to temporary directory");
return false;
}
if ( (!...
0
votes
0
answers
126
views
Looking for a VSCode FTP extension with SSH FS-like features
I'm trying to find a Visual Studio Code extension that allows me to connect to an FTP server with functionality similar to what the SSH FS extension provides.
I previously used SSH FS and appreciated ...