最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

python仿evething的文件搜索器實(shí)例代碼

 更新時(shí)間:2019年05月13日 17:18:38   作者:景兄弟1366  
這篇文章主要介紹了python仿evething的文件搜索器,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

今天看到everything搜索速度秒殺windows自帶的文件管理器,所以特地模仿everything實(shí)現(xiàn)了文件搜索以及打開對應(yīng)文件的功能,首先來一張搜索對比圖。

這是evething搜索效果:

這是自己實(shí)現(xiàn)的效果:

主要功能就是python的os庫的文件列表功能,sqllite創(chuàng)建表,插入數(shù)據(jù)以及模糊搜索,然后就是tkiner實(shí)現(xiàn)的界面功能。全部代碼貼出來做一次記錄,花費(fèi)一天時(shí)間踩坑。

# coding=utf-8
import tkinter as tk
import tkinter.messagebox #這個(gè)是消息框,對話框的關(guān)鍵
import tkinter.constants
import sqlite3
import os
import threading
import traceback
 
def update_db():
  print("更新數(shù)據(jù)庫")
  tkinter.messagebox.showerror("錯(cuò)誤提示","更新數(shù)據(jù)庫功能未完待續(xù),可以刪除目錄下的allFiles.db文件,然后點(diǎn)擊搜索,即可刷新數(shù)據(jù)庫")
 
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("掃描文件出異常了,點(diǎn)擊確定繼續(xù)掃描")
   tkinter.messagebox.showerror("錯(cuò)誤提示","掃描文件出異常了看,點(diǎn)擊確定繼續(xù)掃描")
 
 
 
 
def scan_file():
  print("開始掃描文件")
 #  del myArr[:]
  connection.execute("BEGIN TRANSACTION;") # 關(guān)鍵點(diǎn)
  cursor = connection.cursor()
  obtain_all_files('G:\\',cursor)
  print("G盤掃描完成...")
  tkinter.messagebox.showinfo("溫馨提示","G盤掃描完成....")
  connection.execute("COMMIT;") #關(guān)鍵點(diǎn)
  connection.commit()
  connection.close()
 
 
def insert_db():
   t1 = threading.Thread(target=scan_file)
   t1.setDaemon(True)
   t1.start()
   tkinter.messagebox.showinfo("溫馨提示","正在更新數(shù)據(jù)庫,請等待...")
 
def search_file():
   #表示創(chuàng)建一個(gè)數(shù)據(jù)庫,并獲得連接
   print("數(shù)據(jù)庫是否存在: ",isExistDB)
   if(isExistDB==False):
     tkinter.messagebox.showwarning("警告","數(shù)據(jù)庫不存在,將更新數(shù)據(jù)庫文件!")
     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("錯(cuò)誤提示","數(shù)據(jù)庫發(fā)生異常...")
       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("警告","沒有找到對應(yīng)的文件!")
     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")  # 設(shè)置窗口標(biāo)題
root.geometry("800x600")  # 設(shè)置窗口大小 注意:是x 不是*
root.resizable(width=False, height=False) # 設(shè)置窗口是否可以變化長/寬,F(xiàn)alse不可變,True可變,默認(rèn)為True
#設(shè)置輸入框
inputText = tk.Entry(root,show=None,foreground = 'red',font = ('Helvetica', '15', 'bold'),insertbackground = 'green',width=65)
inputText.pack()
#設(shè)置按鈕,以及放置的位置
searchBtn = tk.Button(root, text="搜索", fg="blue",bd=2,width=10,command=search_file)#command中的方法帶括號(hào)是直接執(zhí)行,不帶括號(hào)才是點(diǎn)擊執(zhí)行
searchBtn.place(x=200, y=40, anchor='nw')
updateBtn = tk.Button(root, text="更新數(shù)據(jù)庫", 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)  #垂直滾動(dòng)條組件
sb.pack(side=tkinter.constants.RIGHT,fill=tkinter.constants.Y) #設(shè)置垂直滾動(dòng)條顯示的位置
listb.config(yscrollcommand=sb.set)
listb.bind("<<ListboxSelect>>",mouseCallBack)
root.mainloop() # 進(jìn)入消息循環(huán)

以上所述是小編給大家介紹的python仿evething的文件搜索器詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評論

开阳县| 三原县| 扎兰屯市| 怀远县| 万载县| 阿拉善盟| 祁东县| 灵石县| 双柏县| 南陵县| 开化县| 施甸县| 柏乡县| 天气| 惠安县| 府谷县| 汪清县| 吴川市| 沅陵县| 宁都县| 大丰市| 台北县| 元江| 清水县| 平塘县| 巴林右旗| 日土县| 江口县| 翁牛特旗| 扬中市| 贵港市| 阜宁县| 扶风县| 淄博市| 喀喇沁旗| 武鸣县| 岐山县| 绥滨县| 江陵县| 临夏县| 方城县|