Example #1
0
 public Copyer(string SourcePath,string DestenationPath)
 {
     CurrentInfo = new CopyInfo(SourcePath, DestenationPath);
     BufferSize = 32768;
 }
Example #2
0
 public Copyer(CopyInfo Info)
 {
     CurrentInfo = Info;
     BufferSize = 32768;
 }