Thanks kstokbro !
Can you help me with following question:
I have a folder which has many files generated from atk.
1.py 2.py ..... so on
I wish to run simulation for each file in that folder. I tried following python pseudo-script:
import os
import subprocess
for root, dir, files in os.walk("."):
for names in files:
subprocess.call("<fullpath>/atkpython", os.path.join(root,names))
I get error command not found.
Is there any easy way of doing this: i.e. looping over all files in folder and running atkpython for each of them
Thanks,
-Arya