Tuesday, 27 August 2013

Remove number of bytes from begining of file

Remove number of bytes from begining of file

I want to copy a file without the first 256 bytes.
Is there a nice way to do it in python?
I guessing that the simple way is to read byte-byte with a counter and
then start copy only when it get to 256.
I was hoping for more elegant way.
Thanks.

No comments:

Post a Comment