-4
私はtxt
ファイルから別のものを読み込むためにこの関数を使用しています。これまでのところ、ファイルエクスプローラのWebページやファイルの場所で動作します。ただし、txt
ファイルで場所が渡されると、ファイルは.exe
には実行されません。外部の.exeファイルを実行するPython 3
これは私がelse
文で苦労しています
def Run():
while True:
try:
fr = open('AutoLoader.txt', 'r')
lines = fr.readlines()
for line in lines:
if line[0:3] == 'web':
#open in the browser
os.startfile(line[3:])
elif line[0:3] == 'loc':
cmd = line[3:]
print(cmd)
subprocess.Popen('explorer "' + cmd + '"')
else:
#open the program
run = ('r"' + line + '"')
process = subprocess.Popen(run, stdout=subprocess.PIPE)
fr.close()
break
except FileNotFoundError:
print("Program not setup")
print("running setup")
Setup()
を使用してい機能です。それは動かないものです。
あなたは
このコマンドを見るには 'print(run)'を試してください(おそらくここに投稿してください)、 'program = subprocess.Popen([run]、stdout = subprocess.PIPE)'と ' – jDo
[あなたの関数名についてはどうしたらよいですか?](https://www.python.org/dev)を読むことをお勧めします。/peps/pep-0008 /#function-and-method-arguments):) – Signal
'' r '' 'から' r'を取り出します。あなたがそこに置かれたとは思っておらず、 .exeファイルの実行 – martineau