判断文件类型(文件的真正类型,不是根据扩展名判断),通过文件头来判断

  1. <PRE class=java name="code">     
  2.   
  3.                 bool xx=false;  //default sFileName is not Exe or Dll File    
  4.   
  5.                 System.IO.FileStream  fs=new System.IO.FileStream(sFileName,System.IO.FileMode.Open,System.IO.FileAccess.Read);    
  6.   
  7.                 System.IO.BinaryReader r=new System.IO.BinaryReader(fs);    
  8.   
  9.                 string bx="";    
  10.   
  11.                 byte buffer;    
  12.   
  13.                 try    
  14.   
  15.                 {    
  16.   
  17.                     buffer=r.ReadByte();    
  18.   
  19.                     bx=buffer.ToString();    
  20.   
  21.                     buffer=r.ReadByte();    
  22.   
  23.                     bx+=buffer.ToString();    
  24.   
  25.     
  26.   
  27.                 }    
  28.   
  29.                 catch (Exception exc)    
  30.   
  31.                 {    
  32.   
  33.                     Console.WriteLine(exc.Message);    
  34.   
  35.                 }    
  36.   
  37.                 r.Close();    
  38.   
  39.                 fs.Close();    
  40.   
  41.                 if (bx=="7790"||bx=="8297"||bx=="8075")//7790:exe,8297:rar,8075:pk    
  42.   
  43.                 {    
  44.   
  45.                     xx=true;    
  46.   
  47.                 }    
  48.   
  49.                 Console.WriteLine(bx);    
  50.   
  51.                 return xx; </PRE>  
 
  1.                 dll:MZ    
  2.                 exe:MZ    
  3.                 rar:Rar    
  4.                 zip:PK   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值