描述
Python方法popen()從命令打開管道。返回值是連接到管道的打開文件對象,可以根據模式是 'r'(默認)還是 'w' 讀取或寫入。 bufsize 參數與 open() 函數中的含義相同.
用法
以下是語法popen()方法 -
os.popen(command[, mode[, bufsize]])
參數
command- 這是使用的命令。
mode− 此模式可為 'r'(默認)或 'w'。
bufsize− 如果緩衝值設置為 0,則不進行緩衝。如果緩衝值為 1,則在訪問文件時將執行行緩衝。如果您將緩衝值指定為大於 1 的整數,則將使用指定的緩衝區大小執行緩衝操作。如果為負,則緩衝區大小為係統默認值(默認行為)。
返回值
此方法返回連接到管道的打開文件對象。
示例
下麵的例子展示了 popen() 方法的用法。
# !/usr/bin/python
import os, sys
# using command mkdir
a = 'mkdir nwdir'
b = os.popen(a,'r',1)
print b
當我們運行上麵的程序時,它會產生以下結果 -
open file 'mkdir nwdir', mode 'r' at 0x81614d0
相關用法
- Python os.path.normcase()用法及代碼示例
- Python os.pathconf()用法及代碼示例
- Python os.path.commonpath()用法及代碼示例
- Python os.path.expanduser()用法及代碼示例
- Python os.path.size()用法及代碼示例
- Python os.path.expandvars()用法及代碼示例
- Python os.path.sameopenfile()用法及代碼示例
- Python os.path.normpath()用法及代碼示例
- Python os.path.lexists()用法及代碼示例
- Python os.path.islink()用法及代碼示例
- Python os.path.getatime()用法及代碼示例
- Python os.path.join()用法及代碼示例
- Python os.pipe()用法及代碼示例
- Python os.path.commonprefix()用法及代碼示例
- Python os.path.relpath()用法及代碼示例
- Python os.pread()用法及代碼示例
- Python os.path.isdir()用法及代碼示例
- Python os.path.split()用法及代碼示例
- Python os.path.samestat()用法及代碼示例
- Python os.path.ismount()用法及代碼示例
注:本文由純淨天空篩選整理自 Python os.popen() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。