timeislife 发表于 2018-2-3 08:28:49

新人查找文件GUI程序

import easygui as g
import os
while 1:
    filename = g.enterbox('请输入需要查找的文件名:','递归查找文件')
    defaultdir = g.diropenbox('请选择默认查找的文件夹:','递归查找文件')
    for root,dirs,files in os.walk(defaultdir):
      if filename in files:
            g.msgbox('找到文件,目录:%s'%(root),'找到文件')
            break
    else:
      g.msgbox('没有在指定目录里面找到文件!')
      if g.ynbox('是否重新选择查找的文件夹?') == 'Yes':
            continue
    break
页: [1]
查看完整版本: 新人查找文件GUI程序