python中那纠结的os.system()与空格处理
今天在写⼀个⽤来对vmware workstation虚拟机进⾏操作的⼩脚本,主要原理是⽤python来调⽤,传递各种不同的参数给它,来进⾏不同的操作。
原理很简单,实现。。。其实也很简单,你会说:不就是⼀个os.system()调⽤吗?是的,我也是这么想的。
我把vmware装在program files⽬录下,其完整路径为:C:\Program Files\VMware\VMware ,你肯定注意到了,路径中有空格,于是,你会说,那加个双引号括起来不就⾏了嘛。是的,我也是这么想的。
但是关键是,我们都这么想,程序不这么想,运⾏时,程序报出'C:\Program' is not recognized as an internal or external command, operable program or batch file.的错误,这⼀看就是典型的路径中存在空格的错误,你会怀疑说,你加引号没?我的第⼀反应也是怀疑加引号没?但这个确实加了。
不管你糊涂没有,反正我到这⼀步是糊涂了,既然引号加了,但从结果来看,os.system()还是⽤空格把字符串给拆成了不同的部分,然后再调⽤shell来执⾏。但我后来在实验的过程中⼜发现了⼀个奇怪的问题:如果参数只是⼀个加引号的字符串,os.system()就可以正常执⾏,但如果有多个引号对,就会出现
以上错误。也就是说,如果参数类似"xx yy zz"这样的类型,os.system()可以成功执⾏;如果参数类似"xx yy" "aa bb"这样的类型,os.system()就会出错。
这⼀下⼦引起了我的好奇⼼,想去看看os.system()的源代码是怎么处理的,但死活没有到,唉,⼜要被这该死的好奇⼼折磨了。
最后说⼀下解决⽅法,就是⽤subprocess.Popen()代替os.system(),如下:
ps = subprocess.Popen(cmd);
ps.wait();    #让程序阻塞
最最后,附上python中对os.system()函数的说明:
Execute the command (a string) in a subshell. This is implemented by calling the Standard C function system(),
and has the same limitations. Changes viron, sys.stdin, etc. are not reflected in the environment
of the executed command.
On Unix, the return value is the exit status of the process encoded in the format specified for wait(). Note
that POSIX does not specify the meaning of the return value of the C system() function, so the return value
of the Python function is system-dependent.
On Windows, the return value is that returned by the system shell after running command, given by the Windows
environment variable COMSPEC: on command systems (Windows 95, 98 and ME) this is always 0; python虚拟机
systems (Windows NT, 2000 and XP) this is the exit status of the command run; on systems using a non-native
shell, consult your shell documentation.
Availability: Macintosh, Unix, Windows.
The subprocess module provides more powerful facilities for spawning new processes and retrieving their results;
using that module is preferable to using this function.
可以看出,os.system()是调⽤了C语⾔的标准函数system(),不过那个那个红红的limitations单词说明这个⽅法有其局限性。最后⼀句话话说,subprocess模块更加强⼤,并建议我们尽量使⽤subprocess模块。
所以,应该尽量不要使⽤os.system()⽅法,⽽是⽤subprocess中的Popen对象或者call()⽅法代替,以免产⽣不可预知的错误。
==================================我是刚猛的分界线==================================

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。