Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Created June 12, 2014 01:52
Show Gist options
  • Save jerstlouis/5764a4655d9c0e866fe4 to your computer and use it in GitHub Desktop.
Save jerstlouis/5764a4655d9c0e866fe4 to your computer and use it in GitHub Desktop.
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