码迷,mamicode.com
首页 > 编程语言 > 详细

Python OS模块学习(二)

时间:2014-09-10 10:46:00      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:blog   os   ar   strong   for   div   sp   log   on   

4.进程的相关处理

system( )给当前进程输入系统shell命令

import os
if os.name == "nt":
      command = "dir"
else:
      command = "ls -l"
      os.system(command)

execvp 开始一个新进程, 以取代目前进程

import os
import sys
program = "python"
arguments = ["hello.py"]
print os.execvp(program, (program,) + tuple(arguments))
print "goodbye"

在windows 平台下用spawn( )等函数执行新进程

import os
import string
def run(program, *args):
# find executable
for path in string.split(os.environ["PATH"], os.pathsep):
       file = os.path.join(path, program) + ".exe"
try:
       return os.spawnv(os.P_WAIT, file, (file,) + args)
except os.error:
       pass
raise os.error, "cannot find executable"
run("python", "hello.py")
print "goodbye"

Python OS模块学习(二)

标签:blog   os   ar   strong   for   div   sp   log   on   

原文地址:http://www.cnblogs.com/b13272012771/p/3963924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!