vote up 1 vote down star

I would like to give IronPython and Mono a try. Specifically doing sysadmin tasks. Which often means running OS commands. In CPython I use the subprocess module for such tasks. But in IronPython (v2.0.1, Mono 2.4, Linux) there is no subprocess module. It seems there is not even an 'os' module. So I can't use os.system(). What would be the IronPython way of doing tasks you would normally use 'subprocess' or 'os.system()' for in CPython?

flag

3 Answers

vote up 5 vote down check

I have found an answer. Thanks to the "IronPython Cookbook". One can find more information on this subject there: http://www.ironpython.info/index.php/Launching_Sub-Processes

>>> from System.Diagnostics import Process
>>> p = Process()
>>> p.StartInfo.UseShellExecute = False
>>> p.StartInfo.RedirectStandardOutput = True
>>> p.StartInfo.FileName = 'uname'
>>> p.StartInfo.Arguments = '-m -r'
>>> p.Start()
True
>>> p.WaitForExit()
>>> p.StandardOutput.ReadToEnd()
'9.6.0 i386\n'
>>> p.ExitCode
0
>>>
link|flag
Beware: Setting "RedirectStandardOutput = True" and "WaitForExit()" can lead to a deadlock. If the stdoutput buffer is filled, the process will wait for "someone" to empty the buffer, while the (only) one (able) to empty the buffer waits for the process to finish. – Nils Oct 12 at 14:38
vote up 1 vote down

You can use most of the standard os modules from within ironpython.

import sys
sys.path.append path('...pathtocpythonlib......')
import os
link|flag
Thanks for the tip. But I would like to avoid having to bundle a CPython distribution to make my IronPython stuff work. Besides: It seems even if I extend sys.path with the necessary directories to the CPython intallation 'subprocess' will not work. It depends on 'fcntl'. Which is a shared library (fcntl.so). – Cyberdrow May 3 at 8:59
Is this case I'd suggest using the .net System.Diagnostics.Process class. See the Cyberdrow's answer below. – Preet Sangha May 3 at 23:33
Sorry just worked out it was you. – Preet Sangha May 4 at 0:28
vote up 0 vote down

Consider this C# Interactive Shell too....not sure if it supports IronPhython in the shell, but Mono does as you know.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.