Heim  >  Artikel  >  Backend-Entwicklung  >  python在指定目录下查找gif文件的方法

python在指定目录下查找gif文件的方法

WBOY
WBOYOriginal
2016-06-10 15:13:241339Durchsuche

本文实例讲述了python在指定目录下查找gif文件的方法。分享给大家供大家参考。具体实现方法如下:

#!/usr/bin/python
# Use the standard find method to look for GIF files.
import sys, find
if len(sys.argv) > 1:
  dirs = sys.argv[1:]
else:
  dirs = [ '.' ]
# Go for it.
for dir in dirs:
  files = find.find('*.gif', dir)
  if files:
    print "For", dir + ':'
    for fn in files:
      print " ", fn
  else:
    print "For", dir + ': None'

希望本文所述对大家的Python程序设计有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn