Skip to content

Instantly share code, notes, and snippets.

@adaptives
Created September 14, 2011 07:10
Show Gist options
  • Select an option

  • Save adaptives/1216019 to your computer and use it in GitHub Desktop.

Select an option

Save adaptives/1216019 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 17 (Copying files)
# LPTHW - Exercise 17
from sys import argv
from os.path import exists
script, from_file, to_file = argv
print "Copying from %s to %s" % (from_file, to_file)
# we could do these two on one line too, how?
input = open(from_file)
indata = input.read()
print "The input file is %d bytes long" % len(indata)
print "Does the output file exist? %r" % exists(to_file)
print "Ready, hit RETUEN to continue, CTRL-C to abort."
raw_input()
output = open(to_file, 'w')
output.write(indata)
print "Alright, all done."
#output.close()
input.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment