码迷,mamicode.com
首页 > 其他好文 > 详细

subprocess execv() arg 2 must contain only strings

时间:2020-07-07 11:42:50      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:中文   code   sub   contain   导致   ring   参数   enc   shell   

subprocess 调用的cmd中含有中文,如下
cmd="\cp -f %s %s"%(x, y),y是前台传入的中文参数
调用Popen导致如下错误:
execv() arg 2 must contain only strings

如下修改:
subprocess.Popen(cmd.encode(‘utf-8‘), shell=True)

subprocess execv() arg 2 must contain only strings

标签:中文   code   sub   contain   导致   ring   参数   enc   shell   

原文地址:https://blog.51cto.com/liuanhf/2509039

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!