Skip to content

Instantly share code, notes, and snippets.

@ajeebkp23
Created June 2, 2015 11:55
Show Gist options
  • Save ajeebkp23/7eebe2f99cec9722458d to your computer and use it in GitHub Desktop.
Save ajeebkp23/7eebe2f99cec9722458d to your computer and use it in GitHub Desktop.
copy current folder into clipoard
import pyperclip
import os
currdir = os.path.abspath(os.path.curdir)
pyperclip.copy(currdir)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment