浙林龙哥

   :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
FileStream srcfile = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.Read);
FileStream desfile = new FileStream(path2, FileMode.Create, FileAccess.Write, FileShare.Write);

int Length = (int) srcfile.Length;
byte[] arrBytes = new byte [Length];
srcfile.Read(arrBytes, 0 , Length);
desfile.Write(arrBytes, 0 , Length);
posted on 2005-05-19 10:51  浙林龙哥  阅读(636)  评论(1编辑  收藏  举报