0

サーバーからクライアントにファイルを送信しようとしていますが、エラーが発生します。どこが間違っているのか教えてください。

これは私のサーバーコードです:

if msg in data.keys():
 print("Requested file exists", msg)
     f=open(msg,"rb")
     datam= f.read(1024)

     while (datam):

      if(s.send(datam)):

         print "sending data"

         datam = f.read(1024)



      s.close()

      f.close
else:
     print("File Not found",msg)
     print("File Not found",data.keys())
     c.close()                # Close the connection

ここで、msg にはファイルが存在するパス アドレスが含まれます c=client socket s=server socket そのファイルを読み取ってクライアントに送信したいのですが、このエラーが発生します

Got connection from ('127.0.0.1', 42330)
('Requested file exists', '/home/beenish/Pictures/pew.txt')
Traceback (most recent call last):
File "server.py", line 41, in <module>
if(s.send(datam)):
socket.error: [Errno 32] Broken pipe

クライアント側では、そのファイルを受け取るためにこのコードを書きました

s.listen(15)
f = open('\home\beenish\pictures\lol.txt', 'wb')
data = s.recv(1024)

while(data):


 f.write(data)

 data=s.recv(1024)

  f.close()
  s.close                     # Close the socket when done

ここで、s はクライアント ソケットです。

ここで、このエラーが発生します

Traceback (most recent call last):
 File "client.py", line 26, in <module>
 s.listen(15)
 File "/usr/lib/python2.7/socket.py", line 224, in meth
 return getattr(self._sock,name)(*args)
 socket.error: [Errno 22] Invalid argument
4

2 に答える 2