Download files from SFTP server that are older than 5 days using Python
问题 I got a Python script on this site that downloads files from the directory from SFTP server. Now I need help to modify this code so that it only downloads the files that older than 5 days from the day the code is used. Code to download files (based on Python pysftp get_r from Linux works fine on Linux but not on Windows): import os import pysftp from stat import S_IMODE, S_ISDIR, S_ISREG cnopts = pysftp.CnOpts() cnopts.hostkeys = None sftp=pysftp.Connection('192.168.X.X', username='username'