Skip to content

Instantly share code, notes, and snippets.

@MessiDaGod
Created September 24, 2021 21:32
Show Gist options
  • Save MessiDaGod/2efca0a36aeebbdf98bf8837351c0204 to your computer and use it in GitHub Desktop.
Save MessiDaGod/2efca0a36aeebbdf98bf8837351c0204 to your computer and use it in GitHub Desktop.
import os
for root, dirs, files in os.walk("D:\\Repos\\YahooApi"):
for file in files:
if file.endswith(".csproj"):
print(os.path.join(root, file))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment