I want to make an abstract script, that will activate itself every hour and run all the scripts from the specific directory. It doesn't matter if there's two of them or a dozen.
When I run
import os
for item in os.listdir(r'C:/directory/Desktop'):
execfile(item)
It says that there's no such file, even though if I list them (with print instead of execfile) I see all of them. I decided to get the exact directory of each of them.
import os
for item in os.listdir(r'C:/directory/Desktop'):
execfile(r'C:/directory/Desktop/%s'%item)
It stops after running the first script that was found. Let's make an unstoppable while loop then.
import os
script_list = []
for item in os.listdir(r'C:/directory/Desktop'):
script_list.append(item)
while len(script_list) > 0:
execfile(r'C:/directory/Desktop/%s'%(script_list.pop()))
How surprised I was when it didn't work either. Once again, only the first script that was found has been executed.
So, the question is, do you guys know how to run all scripts in loop in a specific dir without knowing their names?
In each of these scripts I use
return sys.exit(function)
May this cause this issue?
I tried with subprocess.call(item) and run(item) with no luck.
subprocess.call
is the correct way to go here, from my experience. If all you are running is.py
files, i think the problem has to do with not having python in yourcall
array. e.g.,And let me second @Chris_Rands here, I strongly prefer this being done as a python module with a marker class. i.e.,
with script1.py, script2.py, etc., defining a a
run
method on a class that subclasses a marker class likeRunnable
. Then you can use the following code to run allRunnable
s in a given directory: