【发布时间】:2011-04-08 00:36:16
【问题描述】:
每当我尝试复制大于 2GB 的文件时,都会在 Get 方法中得到数组索引越界异常:
Scp myScp = new Scp("remotehost", "joe", "mypassword");
myScp.OnTransferProgress += new FileTransferEvent(scpProg);
myScp.Connect(22);
myScp.Get("/home/joe/bigfile.bin", "/tmp/bigfile.bin");
myScp.Close();
【问题讨论】: