0 Posted 2020-01-22Updated 2024-01-11Python / Scripting / Modulea few seconds read (About 51 words)python ftpReference soruce: jihite, 2015 Quick start from ftplib import FTP # Loading the libftp=FTP() # Assign to ftpftp.connect("IP","port") # Connected itftp.login("user","password") # Loginftp.cwd("xxx/xxx") # cd commandftp.nlst() # read the items in directory as list python ftphttps://karobben.github.io/2020/01/22/Python/ftp/AuthorKarobbenPosted on2020-01-22Updated on2024-01-11Licensed under#PythonFTP