Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Apologies if this has been asked, but I couldn't find it anywhere. How can I search my current directory and all its subdirectories to output a list of csv files?

glob.glob('*.csv')
glob.glob('**/*.csv')

So the first outputs a list of all .csv files in the working directory and the second outputs a list of files in all of the subdirectories within the working directory. Is there a way to modify this so I can search the entire directory?

question from:https://stackoverflow.com/questions/66068281/search-for-a-filename-in-current-directory-and-subdirectories-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
978 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...