bookmarks of the day 01/27/2010
Posted by Toshi | | Posted On Jan 27, 2010 at 11:30 PM
Python: 指定したパスのディレクトリ中のファイル一覧を出力 - Yukun's Blog
ワイルドカードでリスティング対象を指定
globモジュールのglob()関数の引数内にワイルドカード「*」を含めることが出来ます。これによって、より手軽に目的のファイルを探索することが出来ます。
files
=
glob.glob(
'C:\Python25\*.*'
)
# ワイルドカードが使用可能
Posted from Diigo. The rest of my favorite links are here.