python处理Windows平台上路径有空格
2018-12-04 07:06:09来源:博客园 阅读 ()
最近在采集windows上中间件的时候,遇到了文件路径有空格的问题。
例如:Aapche的安装路径为D:\Program Files\Apache Software Foundation\Apache2.2。
采集apache要读取配置文件D:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf
执行一些D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe -v 这种命令。
读取配置文件是没有问题的,因为用的是python代码,打开文件,读取文件,一行一行遍历,用正则匹配或者字符串比较,就能获取到信息,例如读取配置信息获取端口号。
port_list=[] with open(httpd_conf, "r") as f: file_list = f.readlines() regex = ur"^Listen\s*(\S*?:)*(\d+)\s*$" pattern_listener = re.compile(regex) for item in file_list: listener_list = pattern_listener.findall(item) if listener_list: for port_info in listener_list: if port_info: port = port_info[1] if port and port.strip(): port_list.append(port.strip())
接下来说下,D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe -v 这种通过命令获取信息的。
httpd.exe -v 是获取apache的版本信息。直接在在cmd命令行中输入,显示如下。
D:\>D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe -v 'D:\Program' 不是内部或外部命令,也不是可运行的程序或批处理文件。
有空格问题,搜了搜发现比较好的一种解决办法,就是在把命令用双引号引起来,下边两种写法都可以。
D:\>"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" -v Server version: Apache/2.2.22 (Win32) Server built: Jan 28 2012 11:16:39 D:\>"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" "-v" Server version: Apache/2.2.22 (Win32) Server built: Jan 28 2012 11:16:39
接下来我们在python中用os.popen().read()试试怎么弄。
>>> import os >>> cmd='"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" -v' >>> os.popen(cmd).read() --这种写法读出来结果为空,是因为\要经过转义,前边加个r就行,cmd与cmd1区别 '' >>> cmd --\b是正则表达式,所以变成了\x08 '"D:\\Program Files\\Apache Software Foundation\\Apache2.2\x08in\\httpd.exe" -v' >>> cmd1=r'"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" -v' >>> cmd1 '"D:\\Program Files\\Apache Software Foundation\\Apache2.2\\bin\\httpd.exe" -v' >>> os.popen(cmd1).read() 'Server version: Apache/2.2.22 (Win32)\nServer built: Jan 28 2012 11:16:39\n' >>>
接下来再看一个比较复杂点的命令,httpd.exe" -V|find "Server MPM" 这个用来获取apache的运行模式,windows下就是
WinNT,按刚才的套路在cmd命令行里执行没问题。
D:\>"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" -V|find "Server MPM" Server MPM: WinNT
那么,我们继续把他移植到python中,继续用os.popen().read()。结果如下图,都不出来结果。
所以说,这种参数比较多的用这种方法是不行的。
>>> cmd1=r'"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" -V|find "Server MPM" ' >>> os.popen(cmd1).read() ''
>>> cmd2=r'"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" -V|find Server MPM ' >>> os.popen(cmd1).read() '' >>> cmd3=r'"D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe" "-V|find Server MPM" ' >>> os.popen(cmd1).read() ''
在查阅相关资料后,可用subprocess.Popen()来代替os.popen()这个方法,
但是执行后,出来的结果不是想要的,所以说这个方法也实现不了效果(如下)。
>>> import subprocess
>>> cmd=r'D:\Program Files\Apache Software Foundation\Apache2.2\bin\httpd.exe -V|find "Server MPM"' >>> cmd 'D:\\Program Files\\Apache Software Foundation\\Apache2.2\\bin\\httpd.exe -V|find "Server MPM"' >>> ps = subprocess.Popen(cmd) >>> Server version: Apache/2.2.22 (Win32) Server built: Jan 28 2012 11:16:39 Server's Module Magic Number: 20051115:30 Server loaded: APR 1.4.5, APR-Util 1.4.1 Compiled using: APR 1.4.5, APR-Util 1.4.1 Architecture: 32-bit Server MPM: WinNT threaded: yes (fixed thread count) forked: no
看到这样的结果,放弃折腾了,最终选择了一个曲线救国的方案,用python的os模块,先进入到httpd.exe所在的目录,之后,再执行命令。
>>> homepath="D:\Program Files\Apache Software Foundation\Apache2.2" >>> BinPath = os.path.join(homepath, 'bin') >>> os.chdir(BinPath) >>> apache_model = os.popen('httpd.exe -V |find "Server MPM"').read() >>> print apache_model Server MPM: WinNT
参考文章:1.python中那纠结的os.system()与空格处理
2.Python在通过os.system执行含有空格路径
3.http://www.it1352.com/540052.html
4.python执行系统命令的方法:os.system(), os.popen(), subprocess.Popen()
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:python之深浅拷贝
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash