您好,登錄后才能下訂單哦!
這篇文章主要介紹了python socket通信編程實現文件上傳代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
寫一個file_receive.py和一個file_send.py程序,由file_send.py上傳一個文件,file_receive.py接收上傳的文件,寫到指定的包內
#file_receive.py import socket,subprocess,os BASE_DIR = os.path.dirname(os.path.abspath(__file__)) sk = socket.socket() address = ('127.0.0.1',8001) sk.bind(address) sk.listen(3) conn,addr = sk.accept() fileinfo = conn.recv(1024) filename,filesize = str(fileinfo,'utf8').split('|') #filename = str(filename,'utf8') #filesize = int(str(filesize,'utf8')) path = os.path.join(BASE_DIR,'file_recv',filename) f = open(path,'wb') has_received = 0 while has_received != int(filesize): data = conn.recv(1024) f.write(data) has_received += len(data) f.close() print('well done') sk.close()
#file_send.py import socket,os BASE_DIR = os.path.dirname(os.path.abspath(__file__)) sk = socket.socket() address = ('127.0.0.1',8001) sk.connect(address) filename = input("please input filename:") path = os.path.join(BASE_DIR,filename) filesize = os.stat(path).st_size fileinfo = '%s|%s'%(filename,str(filesize)) sk.sendall(bytes(fileinfo,'utf8')) f = open(path,'rb') has_sent = 0 while has_sent != int(filesize): data = f.read(1024) sk.sendall(data) has_sent += len(data) print('well done!') f.close() sk.close()
文件運行后,實現了將file_send.py上傳的test.png文件上傳到當前路徑下的file_recv包內.
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。