您的位置:首页 > 其它

.net 实现得到文件夹中的图片文件

2008-04-05 17:10 190 查看
public bool IsPicture(string filePath)//filePath是文件的完整路径
{
try
{
System.IO.FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
BinaryReader reader = new BinaryReader(fs);
string fileClass;
byte buffer;
byte[] b = new byte[2];
buffer = reader.ReadByte();
b[0] = buffer;
fileClass = buffer.ToString();
buffer = reader.ReadByte();
b[1] = buffer;
fileClass += buffer.ToString();

reader.Close();
fs.Close();
if (fileClass == "255216 ")//255216是jpg;7173是gif;6677是BMP,13780是PNG;7790是exe,8297是rar
{
System.Console.Write(filePath);
return true;
}
else if (fileClass == "6677")
{
System.Console.Write(filePath);
return true;
}
else
{
return false;
}
}
catch
{
return false;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐