Python,将数据添加到服务器上的文件怎么样?
作者:互联网
我每隔6秒将值附加到一个日志文件中.每30秒我将此日志作为文件传输到服务器.但是,我只想将收集的数据附加到我服务器上的文件中,而不是传输整个文件.我无法弄清楚如何打开服务器文件,然后附加值.
我的代码到目前为止:
session = ftplib.FTP(authData[0],authData[1],authData[2])
session.cwd("//"+serverCatalog()+"//") # open server catalog
file = open(fileName(),'rb')
with open(fileName(), 'rb') as f:
f = f.readlines()
for line in f:
collected = line
# In some way open server file, write lines to it
session.storbinary('STOR ' + fileName(), open(fileName(), 'a'), 1024)
file.close()
session.quit()
相反,我是否必须打开并附加服务器文件,然后将其发回?不要问我为什么不将记录的数据直接发送到数据库;)
以上是我的问题,完全解决方案
session.cwd("//"+serverCatalog()+"//") # open server catalog
localfile = open("logfile.txt",'rb')
session.storbinary('APPE serverfile.txt', localfile)
localfile.close()
解决方法:
尝试使用APPE而不是STOR.资料来源:http://www.gossamer-threads.com/lists/python/python/22960
标签:python,append,ftplib 来源: https://codeday.me/bug/20190829/1764019.html