Created
July 18, 2019 06:50
-
-
Save Everfighting/979816005a001f548001368dbc9a05c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import glob | |
path = 'c:\\projects\\hc2\\' | |
files = [f for f in glob.glob(path + "**/*.txt", recursive=True)] | |
for f in files: | |
print(f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment