python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Unable to connect to SFTP in Java
I am trying to connect to an SFTP server that I created using Docker. When I connect via FileZilla everything is fine.
FileZilla connect
logs:
logs after connecting from FileZilla:
Accepted password ...
justAquestion
Votes: 0
Answers: 0
How can I download all txt files that has been created in the last 60 seconds from my SFTP Server?
static void Main(string[] args)
{
var fileSystemWatcher = new FileSystemWatcher(@"filepath")
{
Filter = "*.txt",
NotifyFilter = NotifyFilters.FileName,
...

Astirak
Votes: 0
Answers: 1
SFTP download with pysftp put fails with "FileNotFoundError: [Errno 2] No such file or directory"
I am trying to automate the transfer of files from an SFTP sever through Airflow, but I am running into a problem where I cannot save the files anywhere except to the root folder.
Here is a snippet of...
biomed
Votes: 0
Answers: 1
How to write bash commands inside SFTP
I have the below script to download today's file from the server
#!/bin/sh
IFS='
'
SYS_DT=$(date '+%d%h%Y')
SYS_FILE='BOMExtract_'$SYS_DT'.xlsx'
sshpass -p "123" sftp "admin@XXXX"...
Rockey
Votes: 0
Answers: 1