Я пишу скрипт на python, который помогает мне загружать файлы с сервера sftp в мою локальную папку.
когда я запускаю скрипт, он просто загружает пустой документ
я продолжаю пытаться, но у меня ничего не получается
я создал сервер sftp для проверки кода, а путь, указанный в удаленном пути, является корневым каталогом сервера
я даю код ниже
import pysftp
myHostname = "192.168.56.1"
myUsername = "new45"
myPassword = "146515"
cnopts = pysftp.CnOpts()
cnopts.hostkeys = None
with pysftp.Connection(host=myHostname, username=myUsername, password=myPassword,cnopts=cnopts) as sftp:
# Define the file that you want to download from the remote directory
remoteFilePath = 'C:\\Users\\Simon\\Desktop\\ftp\\testfile.txt'
# Define the local path where the file will be saved
# or absolute "C:\Users\sdkca\Desktop\TUTORIAL.txt"
localFilePath = 'C:\\Users\\Simon\\Desktop\\ftp2\\textfile.txt'
sftp.get(remoteFilePath, localFilePath)
# connection closed automatically at the end of the with-block'''
подскажите пожалуйста в чем ошибка почему загружается пустой файл