Python小工具:据说这是搜索文件最快的工具!没有之一!一起感受下……

import tkinter as tk
from tkinter import filedialog
import os

root = tk.Tk()
root.geometry('600x300')
root.title('学习资料搜索工具')

"""搜索框"""
search_frame = tk.Frame(root)
search_frame.pack()

tk.Label(search_frame, text='关键字:').pack(side=tk.LEFT, padx=10, pady=10)
key_entry = tk.Entry(search_frame)  # 创建一个输入框
key_entry.pack(side=tk.LEFT, padx=10, pady=10)  # 将输入框显示到界面
tk.Label(search_frame, text='文件类型:').pack(side=tk.LEFT, padx=10, pady=10)
type_entry = tk.Entry(search_frame)
type_entry.pack(side=tk.LEFT, padx=10, pady=10)
button = tk.Button(search_frame, text='搜索')
button.pack(side=tk.LEFT, padx=10, pady=10)
list_box = tk.Listbox(root)
list_box.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)

"""2. 点击按钮搜索文件"""

def search():
    print('按钮被点击了')
    # 1. 获取关键字、文件类型
    key = key_entry.get()
    file_type = type_entry.get()
    print(key, file_type)
    # 2. 读取 windows 系统的文件
    dir_path = filedialog.askdirectory()
    print(dir_path)  # 遍历文件,实现搜索功能
    file_list = os.walk(dir_path)
    for root_path, dirs, files in file_list:
        # 目录路径,目录下的子目录,目录下的文件
        # print(root_path, dirs, files)
        for file in files:
            # 过滤文件类型,搜索关键字
            if type_entry:  # py 如果输入了类型,就进行过滤,如果没有输入,就不过滤类型
                if file.endswith(file_type):
                    # 搜索关键字
                    content = open(root_path + '/' + file, mode='r', encoding='utf-8-sig').read()
                    if key in content:
                        print(root_path + '/' + file)
                        # 把结果显示到界面上
                        list_box.insert(tk.END, root_path + '/' + file)
    # 3. 实现搜索功能
    # 4. 将搜索到的结果显示到界面

创建滚动窗口并将其放置在页面上<details><summary>*<font color='gray'>[En]</font>*</summary>*<font color='gray'>Create a scroll window and lay it out on the page</font>*</details>
sb = tk.Scrollbar(root)
sb.pack(side=tk.RIGHT, fill=tk.Y)
sb.config(command=list_box.yview)
list_box.config(yscrollcommand=sb.set)

button.config(command=search)

def list_click(event):
    print('列表框组件的内容被点击了')
    # 1. 获取到选中的内容
    index = list_box.curselection()[0]
    path = list_box.get(index)
    print(path)
    # 2. 读取选中路径的内容
    content = open(path, mode='r', encoding='utf-8').read()
    print(content)
    # 3. 将内容显示到新的窗口
    top = tk.Toplevel(root)
    filename = path.split('/')[-1]
    top.title(filename)
    text = tk.Text(top)
    text.pack(side=tk.LEFT, fill=tk.BOTH, expand=True)
    text.insert(tk.END, content)

绑定点击事件
list_box.bind('', list_click)

root.mainloop()

Original: https://www.cnblogs.com/hahaa/p/15446410.html
Author: 轻松学Python
Title: Python小工具:据说这是搜索文件最快的工具!没有之一!一起感受下……

原创文章受到原创版权保护。转载请注明出处:https://www.johngo689.com/511018/

转载文章受原作者版权保护。转载请注明原作者出处!

(0)

大家都在看

亲爱的 Coder【最近整理,可免费获取】👉 最新必读书单  | 👏 面试题下载  | 🌎 免费的AI知识星球