如何在套接字上运行Python命令?

时间:2018-04-30 16:24:53

标签: python sockets

我想在套接字上运行一些python代码,即列出套接字上目录中的文件。这是我到目前为止的代码:

import socket, os
clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
clientsocket.connect(('localhost', 10000))
hi = os.listdir('/etc')
print(hi)`

简而言之,我想在套接字的os.listdir目录上运行/etc。 非常感谢帮助! :)

0 个答案:

没有答案