我想通过Python脚本每天一次将两个文件上传到我的FTP服务器一个月。我想使用sleep(60*60*24)
等待第二天,但我不知道如何实际上传我的文件。
我知道ftplib
,但我找不到任何帮助我的文档。
答案 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)