.net 实现得到文件夹中的图片文件
public bool IsPicture(string filePath)//filePath是文件的完整路径 { try { System.IO.FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
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;
}
}

GitCode 天启AI是一款由 GitCode 团队打造的智能助手,基于先进的LLM(大语言模型)与多智能体 Agent 技术构建,致力于为用户提供高效、智能、多模态的创作与开发支持。它不仅支持自然语言对话,还具备处理文件、生成 PPT、撰写分析报告、开发 Web 应用等多项能力,真正做到“一句话,让 Al帮你完成复杂任务”。
更多推荐
所有评论(0)