python file find code example
Example 1: python find specific file in directory
text_files = glob.glob(path + "/**/*.txt")
Example 2: how to access a txt file through os library in python
my_file_handle=open("folder/test.txt")
my_file_handle.read()