python find folder code example
Example 1: get current working directory python
# print current working directory in python
import os
cwd = os.getcwd()
print(cwd)
Example 2: python find specific file in directory
text_files = glob.glob(path + "/**/*.txt")