码迷,mamicode.com
首页 > 其他好文 > 详细

filestream 读取视频文件

时间:2016-04-20 19:45:14      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

 1  class Program
 2     {
 3         static void Main(string[] args)
 4         {
 5             string source = @"F:\361\android studio\4.0\亲情奉献-全套精品.Net基础班视频教程-video\亲情奉献全套精品.Net基础视频教程之10-面向对象多态\(第十二天)\video/13、模拟移动硬盘、U盘、MP3.avi";
 6             string target = @"C:\Users\dell-\Desktop/new.avi";
 7             copy(source, target);
 8             Console.WriteLine("ok");
 9 
10         }
11         public static void copy(string source, string target)
12         {
13             using (FileStream fsread = new FileStream(source, FileMode.Open, FileAccess.Read))
14             {
15                 using (FileStream fswrite = new FileStream(target, FileMode.OpenOrCreate, FileAccess.Write))
16                 {
17                     byte[] b = new byte[1024 * 1024 * 5];
18                     while (true)
19                     {
20                         int a = fsread.Read(b, 0, b.Length);
21                         if(a==0)
22                         {
23                             break;
24                         }
25                         fswrite.Write(b, 0, a);
26                     }
27 
28                 }
29             }
30         }
31     }

 

filestream 读取视频文件

标签:

原文地址:http://www.cnblogs.com/chang-hao/p/5413700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!