Skip to content

Instantly share code, notes, and snippets.

@kevgathuku
Created May 27, 2014 22:44
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 kevgathuku/5575ca21c1092fc83655 to your computer and use it in GitHub Desktop.
Save kevgathuku/5575ca21c1092fc83655 to your computer and use it in GitHub Desktop.
Move all PDF files from download folder
#!/usr/bin/python
import os
import glob, shutil
dst = "/media/kevin/volume/Tutorials/"
src = "/home/kevin/Downloads"
for file in glob.glob("/home/kevin/Downloads/*.pdf"):
shutil.move(file, dst)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment