FInd files with .so extension

Steven D'Aprano steve at REMOVEME.cybersource.com.au
Thu May 3 02:07:11 EDT 2007


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 




More information about the Python-list mailing list