Skip to content

Commit

Permalink
Merge pull request #46 from vaishnavi-1/master
Browse files Browse the repository at this point in the history
Added the code to search deleted files
  • Loading branch information
Ash515 authored Jan 4, 2021
2 parents 0699d7f + e8005d0 commit 7161dd7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Voice Assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,11 @@ def user_mood():
elif "snipping tool" in statement:
speak("Opening Snipping Tool")
os.system("start snippingtool")


elif "show deleted files" in statement or "Recycle Bin" in statement or "Delete files" in statement or "search deleted files" in statement:
speak("Opening Recycle Bin")
os.system("start shell:RecycleBinFolder")

elif "calculator" in statement:
speak("Opening Calculator")
os.system("start calc")
Expand Down Expand Up @@ -505,3 +509,5 @@ def user_mood():
statement = takeCommand().lower()

time.sleep(3)


0 comments on commit 7161dd7

Please sign in to comment.