如何从客户端更改python中的服务器目录?

2024-03-29 09:39:41 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试做客户机-服务器项目。在这个项目中,我必须将linux命令从客户端发送到服务器。现在我可以发送一些命令,如ls、pwd等,它们运行正常,我可以在客户端读取输出,但当我尝试发送“cd”命令时,我没有收到任何错误,但服务器中的目录没有改变。如果我使用os.chdir(os.path.abspath(data))命令而不是subprocess.check_输出,它可以更改目录,但它是无用的,因为我可以发送其他命令,如ls、pwd、mkdir等。感谢您的帮助

服务器端:

def threaded(c):
    while True:
        # data received from client
        data = c.recv(1024)
        if not data:
            print('Bye')
            break
        try:
            data_o = subprocess.check_output(data, shell=True)
        except subprocess.CalledProcessError as e:
            c.send(b'failed\n')
            print(e.output)

        if(len(data_o) > 0):
            c.send(data_o)
        else:
            c.send(b'There is no terminal output.')

    # connection closed
    c.close()

客户端:

while True: 
 # message sent to server 

        s.send(message.encode('ascii')) 
        # messaga received from server 
        data = s.recv(1024)
   # print the received message 

        print('Received from the server :',str(data.decode('ascii'))) 

        # ask the client whether he wants to continue 

        ans = input('\nDo you want to continue(y/n) :') 
        if ans == 'y':
            message = input("enter message")
            continue
        else: 
            break

    # close the connection 
    s.close() 

Tags: thefrom命令服务器sendtrue客户端message
1条回答
网友
1楼 · 发布于 2024-03-29 09:39:41

您可以检查正在发送的命令是否等于cd,并基于此更改运行时行为

data_spl = data.split()

if data_spl[0] == 'cd':
    data_o = os.chdir(os.path.abspath(data_spl[1]))
else:
    data_o = subprocess.check_output(data, shell=True)

相关问题 更多 >