> Well I have a folder with some sub folders that have a combo of xps and gif
> files I want to be able to point the program to it and have it print the
> contents of each sub folder.

In that case I'd use os.walk to traverse 
the folders and find the files.

I'd then use os.system() (or the subprocess 
module for more control) and call whatever 
program you would use to print the files 
from the command line.

ghostscript may do it for the xps files, 
for example.

HTH,

Alan G.
http://www.alan-g.me.uk/
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to