I am using pysftp to access files on SFTP. But I want to get the last modified date of these files and store it in mongo. This is to access the date again next
I got a strange problem with Azure Logic Apps. It's a very simple case, really. Scenario: Logic App reads directory from FTP on 'file created'. Logic App reads
I'd like to catch nicely the error when "No hostkey for host *** is found" and give an appropriate message to the end user. I tried this: import pysftp, paramik
I am setting up a remote SSH interpreter in PyCharm, but when I try to select the interpreter's location on the remote machine, I get the following error: Indic
I connected to a sftp and got a list of files successfully: ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy( paramiko.AutoAddPolicy
Hi I am totally new to WinSCP and Batch. I have figured out a script to transfer a folder from an SFTP site to my computer but would like to only grab the late
How to copy a file in a remote server /maindir/fil1.txt to a sub directory /maindir/subdir/file1.txt i have the sftp created using paramiko. But it always check
I need to write a PowerShell script that reads some data and writes it to a file on a remote SFTP location. I'd rather not generate a local file first before i
I would to use Apache SSHD to create an SFTP server and use SftpFileSystemProvider to mount a remote directory. I successfully create the virtual file system wi
I am trying to connect to SFTP location via ssh jump-host proxy using jcraft version 0.1.52. But getting "connection is closed by foreign host" exception in my
I have two sftp servers behind a loadbalancer where users log on in a chroot environment. Sometimes the user log in server1, sometimes in server 2. Also, there
I am trying to connect my AWS ec2 ubuntu instance to the Netbeans. While I am trying to connect with Netbeans Remote server then, It is showing the following er
I need help with my Project I'm trying to display the size of a folder called sh-modules but only thing I can achieve is displaying individual subfolder sizes..
The only known way to debug a Linux Azure web app is to create a TCP tunnel between your machine and Azure which is explained here. I am able to create the tunn
I am uploading files over 100MB and I am choosing to zip the files, split the .zip and then transferring the file parts. Once transferred to the SFTP, I do not
I have a requirement to perform checksum (for data integrity) for SFTP. I was hoping this could be done during the SFTP file transfer - I realize this could be
I kept ssh connection alive following this post: Mobaxterm: how to prevent ssh session from exiting? I managed to keep ssh connection alive but sftp connection
I need to download files from SFTP server to a local machine using a PowerShell script. The API/library that will be used for the download needs to be able to
I was migrating an FTP functionality to SFTP. In shell script that does FTP, I saw some lines and I can not convert them to SFTP. I searched but couldn't get a
We can write a simple get like this: import pysftp hostname = "somehost" user = "bob" password = "123456" filename = 'somefile.txt' with pysftp.Conn