91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中如何實現仿evething的文件搜索器

發布時間:2021-06-28 14:17:05 來源:億速云 閱讀:127 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關python中如何實現仿evething的文件搜索器,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

這是evething搜索效果:

python中如何實現仿evething的文件搜索器

這是自己實現的效果:

python中如何實現仿evething的文件搜索器

主要功能就是python的os庫的文件列表功能,sqllite創建表,插入數據以及模糊搜索,然后就是tkiner實現的界面功能。全部代碼貼出來做一次記錄,花費一天時間踩坑。

# coding=utf-8
import tkinter as tk
import tkinter.messagebox #這個是消息框,對話框的關鍵
import tkinter.constants
import sqlite3
import os
import threading
import traceback
 
def update_db():
  print("更新數據庫")
  tkinter.messagebox.showerror("錯誤提示","更新數據庫功能未完待續,可以刪除目錄下的allFiles.db文件,然后點擊搜索,即可刷新數據庫")
 
def mouseCallBack(*args):
  indexs = listb.curselection()
  index = int(indexs[0])
  print("index",index)
  start_directory = str(myArr[index])
  print(start_directory[2:-3])
  os.startfile(start_directory[2:-3])
 
def obtain_all_files(filepath,cursor):
#遍歷filepath下所有文件,包括子目錄
 try:
   files = os.listdir(filepath)
   for fi in files:
    fi_d = os.path.join(filepath,fi)
    if os.path.isdir(fi_d):
     obtain_all_files(fi_d,cursor)
    else:
     path = os.path.join(filepath,fi_d)
     update_progress.set(path)
     print("目錄",path)
     sqlAdd = "insert into filepath (file_path) values ('"+path+"')"
     print("sqlAdd",sqlAdd)
     cursor.execute(sqlAdd)
 except Exception as e:
   traceback.print_exc()
   print("掃描文件出異常了,點擊確定繼續掃描")
   tkinter.messagebox.showerror("錯誤提示","掃描文件出異常了看,點擊確定繼續掃描")
 
 
 
 
def scan_file():
  print("開始掃描文件")
 #  del myArr[:]
  connection.execute("BEGIN TRANSACTION;") # 關鍵點
  cursor = connection.cursor()
  obtain_all_files('G:\\',cursor)
  print("G盤掃描完成...")
  tkinter.messagebox.showinfo("溫馨提示","G盤掃描完成....")
  connection.execute("COMMIT;") #關鍵點
  connection.commit()
  connection.close()
 
 
def insert_db():
   t1 = threading.Thread(target=scan_file)
   t1.setDaemon(True)
   t1.start()
   tkinter.messagebox.showinfo("溫馨提示","正在更新數據庫,請等待...")
 
def search_file():
   #表示創建一個數據庫,并獲得連接
   print("數據庫是否存在: ",isExistDB)
   if(isExistDB==False):
     tkinter.messagebox.showwarning("警告","數據庫不存在,將更新數據庫文件!")
     try:
       mycursor = connection.cursor()
       file_sql = "create table filepath('file_path' text not null)"
       mycursor.execute(file_sql)
       mycursor.close()
       insert_db()
     except:
       tkinter.messagebox.showerror("錯誤提示","數據庫發生異常...")
       return
   else:
     print("開始搜索")
     listb.delete(0,tk.constants.END)
     mycursor = connection.cursor()
     entry_text = inputText.get()
     search_sql = "select * from filepath where file_path like '%"+entry_text+"%'"
     files = mycursor.execute(search_sql)
     #tkinter.messagebox.showwarning("警告","沒有找到對應的文件!")
     for f in files:
      print(f)
      myArr.append(f)
      listb.insert(tkinter.constants.END,f)
     print("搜索完成")
     mycursor.close()
 
myArr = []
isExistDB = os.path.exists("allFiles.db")
connection = sqlite3.connect("allFiles.db",check_same_thread = False)
root = tk.Tk() # 初始化Tk()
root.title("電腦文件搜索工具(仿everything)By景兄弟V1.0")  # 設置窗口標題
root.geometry("800x600")  # 設置窗口大小 注意:是x 不是*
root.resizable(width=False, height=False) # 設置窗口是否可以變化長/寬,False不可變,True可變,默認為True
#設置輸入框
inputText = tk.Entry(root,show=None,foreground = 'red',font = ('Helvetica', '15', 'bold'),insertbackground = 'green',width=65)
inputText.pack()
#設置按鈕,以及放置的位置
searchBtn = tk.Button(root, text="搜索", fg="blue",bd=2,width=10,command=search_file)#command中的方法帶括號是直接執行,不帶括號才是點擊執行
searchBtn.place(x=200, y=40, anchor='nw')
updateBtn = tk.Button(root, text="更新數據庫", fg="blue",bd=2,width=10,command=update_db)
updateBtn.place(x=400, y=40, anchor='nw')
 
update_progress = tk.StringVar()
update_progress.set('還未開始掃描')
lb = tk.Label(root,text="還未開始", fg="blue",bd=2,width=100, textvariable=update_progress)
lb.place(x=20,y=90)
 
listb = tk.Listbox(root,width=110,height=20)
listb.place(x=1, y=120, anchor='nw')
sb = tk.Scrollbar(root)  #垂直滾動條組件
sb.pack(side=tkinter.constants.RIGHT,fill=tkinter.constants.Y) #設置垂直滾動條顯示的位置
listb.config(yscrollcommand=sb.set)
listb.bind("<<ListboxSelect>>",mouseCallBack)
root.mainloop() # 進入消息循環

關于“python中如何實現仿evething的文件搜索器”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

许昌市| 曲沃县| 大余县| 房山区| 板桥市| 望江县| 民乐县| 莆田市| 扶风县| 吴江市| 南岸区| 留坝县| 准格尔旗| 濮阳县| 托克逊县| 利辛县| 团风县| 固原市| 卢龙县| 承德市| 门头沟区| 乡宁县| 鸡泽县| 彰武县| 霍林郭勒市| 高台县| 枝江市| 宝丰县| 安达市| 安西县| 海南省| 东兴市| 凤城市| 淅川县| 涞水县| 汝州市| 长白| 邵武市| 桐梓县| 和林格尔县| 子洲县|