跳到主要內容
搜尋
搜尋此網誌
任務日誌
分享
取得連結
Facebook
X
Pinterest
以電子郵件傳送
其他應用程式
3月 26, 2012
以python lib 上傳檔案到ftp
from ftplib import FTP
ftp = FTP('65.254.248.153')
ftp.login('tagtooorg','cusps-1110')
ftp.cwd('/static/TagAndContentMatch')
f = open("test.txt", "rb")
ftp.storbinary('STOR ' + 'test.txt', f)
f.close()
print "OK"
ftp.quit()
留言
熱門文章
5月 02, 2020
怎麼規劃一份 User Flow Diagram
1月 16, 2021
Vue 裡頭的冒號是什麼意思?
留言
張貼留言