I was trying to copy a file using Python, but the file corrupts ...
Look at the code:
#!/usr/bin/env python
cf = raw_input("File: ")
ds = raw_input("Destino: ")
with open(cf,"rb") as fl:
for l in fl.read():
l.rstrip()
with open(ds,"wb")...
asked by
16.08.2018 / 17:08