import os
import subprocess
import sys
import re
## fname_ext=sys.argv[1]
fname_ext=r"C:\mine\.cs\test.cs"
exe=os.path.splitext(fname_ext)[0]+".exe" # Executable
fdir=os.path.split(fname_ext)[0]
fcontent=open(fname_ext).read()
p_using=re.compile("\s*using\s+((\w+[.]*)+)")
p_namespace=re.compile("\s*namespace\s+(\w+)")
usings=p_using.findall(fcontent)
usings=[x[0] for x in usings]
references=[]
for i in os.listdir(fdir):
path=fdir+"\\"+i
try:
if os.path.isdir(path) or (not path.endswith('cs')):continue
with open(path) as fp:
content=fp.read()
namespaces=p_namespace.findall(content)
for n in namespaces:
if n in usings and 'System' not in n:
references+=[path]
except:
pass
command="csc /nologo "+" ".join(references)+" "+fname_ext
## command=" ".join(references)
#~ ---------------------------------------------------------
# Build:
option=1
if option==0:
# using os.system
print ">>",command
if os.system(command)==0:
os.system(exe)
else:
#~ Using subprocess module
## print type(references)
command=['csc']
## print command,references
command.extend(["/nologo","/out:"+exe])
command.extend(references)
command.append(fname_ext)
## print command
if subprocess.call(command,shell=True)==0:
## print "running %s"%exe
subprocess.call([exe],shell=True)
else:
pass
## print "Failed to run"
#~ ---------------------------------------------------------
我上面有这段代码,它应该从SciTE
. 它搜索目录中的
每个.cs
文件,并找到具有当前
文件包含的名称空间的文件。在 SciTE 中运行文件的命令是:
command.go.*.cs=python C:\mine\.py\csc.py $(FilePath)
command.go.subsystem.*.cs=0
那个程序逻辑部分没问题。
问题是,当使用如下示例 Csharp 代码按 F5 时:
using System;
using System.Collections;
using MyNamespace;
class Test{
public static void Main(String[] args){
MyObject inst=new MyObject();
MyObject.self_destruct(inst);
}
}
它运行正常。但是,当我取消注释第二个fname_ext
并注释第一个
并运行 csc.py 文件时,会打开一个窗口并继续运行,打印command
(
使用该os.system
选项会发生这种情况)。当您使用the subprocess.call
选项时,会发生同样的事情
,但这次仅在shell=True
. 它只运行了 15 秒,并且有 800 多个 cmd.exe 和 python.exe 进程。我不得不在杀死cmd.exe
鼠标后等待将近 5 分钟才能开始响应,并且还要等待 2 分钟才能让桌面窥视工作。
时shell=False
,它运行正常,就像您从文件中按 F5 键时一样。
这里发生了什么?
是shell=True
什么让它表现得那样?