Skip to content

Instantly share code, notes, and snippets.

@mutaku
Created May 23, 2013 18:26
Show Gist options
  • Select an option

  • Save mutaku/5638285 to your computer and use it in GitHub Desktop.

Select an option

Save mutaku/5638285 to your computer and use it in GitHub Desktop.
Test handling multiple drag and drops to raw_input
def grabber():
s = raw_input("files: ")
delim = "C:\\"
files = [delim+x for x in s.split(delim) if x]
return files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment