") try: f = open("./-6ren">
gpt4 book ai didi

python - 将文件从服务器发送到客户端(python)

转载 作者:行者123 更新时间:2023-12-02 15:36:23 25 4
gpt4 key购买 nike

我目前正在编写一个需要传输一些文件才能工作的服务器-客户端应用程序。我正在使用这种方法:

客户:

file_to_send = raw_input(">") 

try:
f = open("./sent_files/" + file_to_send, "rb")
except IOError, e:
print ">error: ", e
break

data = xmlrpclib.Binary(f.read())

if s.receive_file(file_to_send, data):
print ">file correctly sent"

服务器:

def receive_file(self, name, arg):                                        
with open("./sampletest/"+name, "wb") as handle:
handle.write(arg.data)

但是我如何做相反的事情(我的意思是从服务器向客户端发送文件)?

最佳答案

像这样在服务器上写一个函数:

def send_file(self, name):
with open('./sampletest/' + name, 'rb') as handle:
return handle.read()

并在客户端上调用它:

data = send_file(fileName)
with open('./received_files/' + fileName, 'wb') as handle:
handle.write(data)

关于python - 将文件从服务器发送到客户端(python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16790725/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com