FTP (2) 썸네일형 리스트형 파이썬 ftp로 접속후 한글파일 다운로드 import ftplib import os # ftp 정보 host = 'server' user = 'id' passwd = 'pw' try: # ftp 연결 with ftplib.FTP() as ftp: ftp.connect(host=host,port=21) print(ftp.getwelcome()) # 접속 메세지 출력 ftp.encoding = 'utf-8' ftp.sendcmd('OPTS UTF8 ON') # 이 문구를 넣어줘야 한글 사용이 가능함 s = ftp.login(user=user,passwd=passwd) ftp.cwd('/테스트폴더A') dirlist = ftp.nlst() print(dirlist) ftp.cwd('테스트폴더B') dirlist = ftp.nlst() print(di.. dsm 7에서 cURL이 ftp를 지원하지 않는다. 음.. 버젼업을 하고.. 한참을 삽질한 다음에 알게 되었다 ㅠㅠ;;; 사용할 수 있는 방법은 링크를 참고하세요. Synology DSM 7 and broken FTP support in curl – WebIT Tech Blog Synology DSM 7 and broken FTP support in curl – WebIT Tech Blog I recently updated my DS1517 to DSM 7 and noticed that FTP support has been left out in curl/libcurl they included. This is how I compiled the latest version of curl, including support for all omitted protoc.. 이전 1 다음