Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 db 中有一个数据列,它包含varbinary(max)
一些记录将存储在该表中
现在我想从 byte[] 中找出文件名和文件扩展名(Mime 类型)
如果通过代码将非常有用
这通常是不可能的。如果 varbinary-column 仅包含文件内容,则无法获取扩展名。如果我设计了数据库,就会有另一列描述文件类型/扩展名。如果您知道该列中仅存储了图像(例如),您可以尝试通过查找 jpg、png 等文件的“特定字节”来查找。