Skip to content

Instantly share code, notes, and snippets.

@chaityacshah
Created March 11, 2018 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chaityacshah/f9dda9ae14a9349246badf35408bc172 to your computer and use it in GitHub Desktop.
Save chaityacshah/f9dda9ae14a9349246badf35408bc172 to your computer and use it in GitHub Desktop.
import os, glob
#prints all fies ending in .pdf
os.chdir("~")
for file in glob.glob("*.pdf"):
print(file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment