Rob Andrews wrote: > I've got a weekly project here in which I have to take a somewhat > arbitrary number of input files, create working directories in which > to process each of them, and call other programs from within the scope > of those directories.
Use subprocess.call() to run the external program and supply the working directory path in the cwd parameter. Kent _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
