Python」カテゴリーアーカイブ

FTP アクセス Python

FTP アクセス Python Thonny IDE
コード
from ftplib import FTP
ftp = FTP(‘server’)
ftp.login(‘user’,’passwd’)
ftp.retrlines(‘LIST’)