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)
in_file = open(from_file, 'w')
print "The input file is %d bytes long" % len(in_file)
print "Does the output file exist? %r" % exists(to_file)
print "Ready, hit RETURN to continue, CTRL-C to abort."
raw_input()
out_file = open(to_file, 'w')
out_file.write(in_file)
print "Alright, all done."
out_file.close()
in_file.close()
The Error i get TypeError: object of type 'file' has no len()
I Have set the in_file varaible to Write mode,so i do not understand where is the problem.