You are here : python_2osospopen

os.popen() - os

             

The method popen() opens a pipe to or from command.The return value is an open file object connected to the pipe, which can be read or written depending on whether mode is 'r' (default) or 'w'.The bufsize argument has the same meaning as in open() function.


  • command -- This is command used.

  • mode -- This is the Mode can be 'r'(default) or 'w'.

  • bufsize -- If the buffering value is set to 0, no buffering will take place. If the buffering value is 1, line buffering will be performed while accessing a file. If you specify the buffering value as an integer greater than 1, then buffering action will be performed with the indicated buffer size. If negative, the buffer size is the system default(default behavior).


Syntax


os.popen(command[, mode[, bufsize]])


Example


# !/usr/bin/python

import os, sys

# using command mkdir
a = 'mkdir nwdir'

b = os.popen(a,'r',1)

print b


Output / Return Value

When we run above program, it produces following result:


open file 'mkdir nwdir', mode 'r' at 0x81614d0


Limitations


Alternatives / See Also


Reference