using
import sys
folder = sys.argv[1]
for i in folder:
    for file in i:
        if file == "test.txt":
            print (file)
would this access a file in the folder of a subfolder? For Example 1 main folder, with 20 subfolders, and each subfolder has 35 files. I want to pass the folder in commandline and access the first subfolder and the second file in it
 
     
     
    