現在、ファイルを転送して動作させる必要があるサーバークライアントアプリケーションを作成しています。私はこの方法を使用しています:
クライアント:
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)
しかし、どうすれば反対のことができますか (サーバーからクライアントにファイルを送信することを意味します)?