Windows Server 2012 ftp的搭建

来源:互联网 发布:恒久办公软件用法 编辑:程序博客网 时间:2024/05/04 17:59

1,
[root@yw ~]# ftp x.x.x.x

向一个环境内通过FTP推一个包,其中遇到不能在目标文件夹建立文件和文件夹的麻烦,关闭Passive mode就好了,登入后修改状态 passive on ,。
ftp> passive
Passive mode off.–关闭
2,
Windows Server 2012

ftp_test.py

import ftplibimport timedef test_ftp(file):    ftp = ftplib.FTP()    ftp.connect('x.x.x.x', '21')    ftp.login(r'xxxx', r'xxxxxx')    local_file = file   #不需要加路径    remoteFile = file     print time.ctime(),'#########start to copy',local_file,'to', remoteFile     #'''    file_handler = open(local_file , 'rb')    ftp.storbinary("STOR %s" % remoteFile, file_handler)    file_handler.close()    print time.ctime(),'success to copy',file    ftp.quit()while 1:    test_ftp('1.txt')    #test_ftp('2.txt')     #break
0 0
原创粉丝点击