I have a folder named "main" and in main I have another 10 sub-folders (sub1, sub2,....sub10)
each folder has various CSV files.
I want to get the path if a particular file exists in sub-folders.
for example:
if I am looking for a file named "required_file.csv" and if it exists in folders( sub1 and sub5),
my code should return me
paths= ["C\\main\\sub1\\required_file.csv" , "C\\main\\sub5\\required_file.csv"]