Created
June 12, 2014 01:52
-
-
Save jerstlouis/5764a4655d9c0e866fe4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void CopyFile(File input, File output) | |
{ | |
byte buffer[65536]; | |
input.Seek(0, start); | |
for(;!input.Eof();) | |
{ | |
uint count = input.Read(buffer, 1, sizeof(buffer)); | |
if(count) | |
output.Write(buffer, 1, count); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment