1. 程式人生 > 程式設計 >python 解決Windows平臺上路徑有空格的問題

python 解決Windows平臺上路徑有空格的問題

最近在採集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

補充知識:python windows下獲取路徑時有中文處理

在windows中用os,path.abspath(__file__)時有中文路徑時,預設是轉成非unicode格式

這會導致,在其它模組使用該路徑時,會報

utf8' codec can't decode byte 0xb7 in position 14: invalid start byte

怎麼處理呢?

網上百度了一把,解決方法都不妥當,還是來個非通用的吧,但很好使用:

如下

project_path = os.path.abspath(__file__.decode('gbk'))

用該方法簡單便捷。

好啦,以上這篇python 解決Windows平臺上路徑有空格的問題就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。