-
[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()
'Python > Python Programming' 카테고리의 다른 글
[Python] 정규식 전방탐색과 후방탐색을 이용한 문자열 분할 (0) 2018.05.13 [Python] 정렬과 공백을 이용하여 보기좋게 출력하기 (0) 2018.05.12 [Python] Python 버전 정보 (0) 2018.05.12 [Python] MSSQL 실행쿼리 모니터링 (0) 2018.05.11 [Python] Assigning variables or list as single-line if statements (한줄if문) (0) 2018.05.07 [Python] 포함(Containment) 연산자 in, not in (2) 2018.05.07 [Python] if 조건문에서 자료형의 참(True)과 거짓(False) (0) 2018.05.07 [Python] getpass 모듈을 이용하여 입력값 감추기 (0) 2018.05.06