真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

python中如何實(shí)現(xiàn)仿evething的文件搜索器-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)python中如何實(shí)現(xiàn)仿evething的文件搜索器,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

10余年的鞏留網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。營(yíng)銷(xiāo)型網(wǎng)站的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整鞏留建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)公司從事“鞏留網(wǎng)站設(shè)計(jì)”,“鞏留網(wǎng)站推廣”以來(lái),每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。

這是evething搜索效果:

python中如何實(shí)現(xiàn)仿evething的文件搜索器

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

python中如何實(shí)現(xiàn)仿evething的文件搜索器

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

# coding=utf-8
import tkinter as tk
import tkinter.messagebox #這個(gè)是消息框,對(duì)話框的關(guān)鍵
import tkinter.constants
import sqlite3
import os
import threading
import traceback
 
def update_db():
  print("更新數(shù)據(jù)庫(kù)")
  tkinter.messagebox.showerror("錯(cuò)誤提示","更新數(shù)據(jù)庫(kù)功能未完待續(xù),可以刪除目錄下的allFiles.db文件,然后點(diǎn)擊搜索,即可刷新數(shù)據(jù)庫(kù)")
 
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("開(kāi)始掃描文件")
 #  del myArr[:]
  connection.execute("BEGIN TRANSACTION;") # 關(guān)鍵點(diǎn)
  cursor = connection.cursor()
  obtain_all_files('G:\\',cursor)
  print("G盤(pán)掃描完成...")
  tkinter.messagebox.showinfo("溫馨提示","G盤(pán)掃描完成....")
  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ù)庫(kù),請(qǐng)等待...")
 
def search_file():
   #表示創(chuàng)建一個(gè)數(shù)據(jù)庫(kù),并獲得連接
   print("數(shù)據(jù)庫(kù)是否存在: ",isExistDB)
   if(isExistDB==False):
     tkinter.messagebox.showwarning("警告","數(shù)據(jù)庫(kù)不存在,將更新數(shù)據(jù)庫(kù)文件!")
     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ù)庫(kù)發(fā)生異常...")
       return
   else:
     print("開(kāi)始搜索")
     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("警告","沒(méi)有找到對(duì)應(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è)置窗口是否可以變化長(zhǎng)/寬,F(xiàn)alse不可變,True可變,默認(rèn)為T(mén)rue
#設(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ù)庫(kù)", fg="blue",bd=2,width=10,command=update_db)
updateBtn.place(x=400, y=40, anchor='nw')
 
update_progress = tk.StringVar()
update_progress.set('還未開(kāi)始掃描')
lb = tk.Label(root,text="還未開(kāi)始", 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("<>",mouseCallBack)
root.mainloop() # 進(jìn)入消息循環(huán)

關(guān)于“python中如何實(shí)現(xiàn)仿evething的文件搜索器”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。


本文題目:python中如何實(shí)現(xiàn)仿evething的文件搜索器-創(chuàng)新互聯(lián)
URL地址:http://weahome.cn/article/dsigps.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部