On 15:37, venerdì 13 giugno 2008 Nader wrote:

> try:
> list_of_files != []
> get the files
> 
For file in list_of_files:
    try:
       myfile = open(file, 'r')
    except (IOError, OSError):
       print"Your %s file wasn't open" %file
    # here you can do something  with your open file as read option
       myfile.readlines() # for example
-- 
Mailsweeper Home : http://it.geocities.com/call_me_not_now/index.html
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to