Can anybody please explain to me what this code will do to the copy?
vb Code:
  1. Using source As New IO.FileStream("source path here", IO.FileMode.Open)
  2.     Using target As New IO.FileStream("destination path here", IO.FileMode.Create)
  3.         Const BUFFER_SIZE As Integer = 1024
  4.         Dim buffer(BUFFER_SIZE - 1) As Byte
  5.         Dim bytesRead As Integer = source.Read(buffer, 0, BUFFER_SIZE)
  6.  
  7.         While bytesRead > 0
  8.             target.Write(buffer, 0, bytesRead)
  9.             bytesRead = source.Read(buffer, 0, BUFFER_SIZE)
  10.         End While
  11.  
  12.         target.Close()
  13.     End Using
  14.  
  15.     source.Close()
  16. End Using