On Dec 30, 9:30 am, ibpe...@gmail.com wrote: > how do i get along with this task of extracting multiples folder and > generating their names individually in a their respective files as > they were generated.
Are you talking about unzipping an archive or walking a directory? If the former, see the zip module or use the subprocess module to control an external archiving application. If the latter, see os.walk and the glob module. Mike -- http://mail.python.org/mailman/listinfo/python-list