Python socket通信编程实现文件上传代码实例

这篇文章主要介绍了Python socket通信编程实现文件上传代码实例。

目录

file_receive.py🎃

file_send.py🎃  


写一个file_receive.py和一个file_send.py程序,由file_send.py上传一个文件,file_receive.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🎃  

#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包内。

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值