On Wed, 02 May 2007 21:58:41 -0700, pradeep nair wrote:

> HI,
> 
> 
>      How do i find files with .so extension using python .



import os
help(os.listdir)
help(os.walk)
help(os.path.splitext)


That should give you all the tools you need.



-- 
Steven D'Aprano 

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to