每天一次将文件上载到FTP服务器的Python脚本

时间:2017-08-04 09:22:31

标签: python file-upload ftp upload multiple-file-upload

我想通过Python脚本每天一次将两个文件上传到我的FTP服务器一个月。我想使用sleep(60*60*24)等待第二天,但我不知道如何实际上传我的文件。

我知道ftplib,但我找不到任何帮助我的文档。

1 个答案:

答案 0 :(得分:2)

这样的事情应该有效:

#!/usr/bin/python
import ftplib
from time import sleep

while True:
    IP = "xx.xx.xx.xx"
    path_file1 = "./MyFile1.py"
    path_file2 = "./MyFile2.py"

    UID = ""
    PSW = ""

    ftp = ftplib.FTP(IP)
    ftp.login(UID, PSW)
    ftp.cwd("/Unix/Folder/where/I/want/to/put/file")

    with open(path_file1, 'r') as myfile: ftp.storlines('STOR ' + filename, myfile)
    with open(path_file2, 'r') as myfile: ftp.storlines('STOR ' + filename, myfile)

    sleep(86400)