ftplib
-
[Python] ftplib 모듈을 이용한 FTP 파일 업로드Python/Python Programming 2018. 5. 9. 21:04
파이썬(python)의 ftplib 을 이용한 파일 업로드. (Upload files using Python's ftplib module) import ftplib ftp = ftplib.FTP('host') ftp.login('user','password') filename = 'test.zip' myfile = open('filename', 'rb') # binary = rb, ASCII = r ftp.storbinary('STOR ' + filename, myfile) # Store a file in binary transfer mode : storbinary # Store a file in ASCII transfer mode : storlines myfile.close()