I want to find a file and open it! Right now I have some problems! Basically, I don't know how to find the file, I know how to find a file in the same directory but not globally on the computer! Can anyone help me? Hier is my code
import os
for root, dirs, files in os.walk(".txt"):
for filename in files:
os.startfile(filename)