python socket-send()命令不起作用

时间:2016-10-27 18:25:53

标签: python sockets send recv python-os

我需要写一个服务器和一个做4件事的cliet 1.发送邮件被收回的时间 2.记住文件夹中的所有文件 3.从该文件夹中复制文件,并在另一个文件夹中创建一个新文件(txt) 4.关闭progrem

克林特:

    import socket
    import os
    import pickle
    s=socket.socket()
    addr=('127.0.0.1',8200)
    s.connect(addr)
    choice="0"
    while choice!="4":
        print s.recv(4068)
        choice=raw_input("please choose a service number:")
        s.send(choice)
        if choice=="3":
            fileName=raw_input("please enter the name of the file you want to download:")
            s.send(fileName)
        data2= s.recv(4068)
        if choice=="1":
            print data2
        elif choice=="2":
            data_arr=pickle.loads(data2)
            print data_arr
        elif choice=="3":
            text=s.recv(4068)
            if text=="no file with this name":
                print text
            else:          
                newFile=open("newFile.txt","w")
                newFile.write(text)
                newFile.close()       

    print "thanks for using our conection"
    s.close()

服务器:

import socket
import time
import os
import pickle
def main():
    path="C:\hello"
    s=socket.socket()
    addr=('127.0.0.1',8200)
    s.bind(addr)
    s.listen(5)
    s2,addr2=s.accept()
    choice="0"
    while choice!="4":
        s2.send("1.Get the time of the message\r\n2.Get list of files\r\n3.Download file\r\n4.Close") 
        choice= s2.recv(4068)
        if choice=="1":
            s2.send(time.strftime("%H:%M:%S"))
        if choice=="2":
            dirs=os.listdir(path)
            data_string = pickle.dumps(dirs)
            s2.send(data_string)    
        if choice=="3":
              fileName=s2.recv(4068)
              os.chdir(path)
              dirs=os.listdir(path)
              for file in dirs:
                  if fileName in dirs:
                      f=open(fileName,'r')
                      text=f.read()
                      **s2.send(text)**
                      f.close()
                  else:
                      **s2.send("no file with this name")**
    s.close()
    s2.close()



if __name__ == '__main__':
    main()

问题是我在另一台电脑上尝试过而且progrem只是没有发送消息(在Bold中)并且我无法理解为什么因为代码在另一台PC上工作并且经过几次测试我知道它找到了文件一切都很好,它只是不发送消息(.txt文件不为空)

1 个答案:

答案 0 :(得分:0)

根据您的代码,您检查了fileName中是否dirs。您实现了if和else条件。你没有检查的一件事是dirs本身。

您提到代码适用于您的计算机,但不适用于第二台计算机。我猜第二台机器上的dirs是空的。因此,代码会忽略所有代码for fileName in dirs:

您可以添加调试行以检查dirs是否为空